2

I recently installed cream onto a windows 7 laptop. I was installing the rails.vim plugin when tried to issue the :helptags ~/vim/docs command so I can have the rails helpfiles available.

I have since discovered that w7 doesn't allow user privileges in the program files directory so I haven't been able to add the helptags or use edit -> startup settings to change my vimfiles.

I found this thread here Allow access permission to write in Program Files of Windows 7 and a few websites referring to "ultimate windows tweaker" . Has anyone without third party software been able to get access rights for vim or cream on win7?

Community
  • 1
  • 1
sayth
  • 6,696
  • 12
  • 58
  • 100

3 Answers3

1

If you want to have access privileges to the vim folder, then you should rather try a portable version of vim (try gvimportable from http://www.portableapps.com).

The access control has been designed such that multiple users can share a software and not modify it.

Benoit
  • 76,634
  • 23
  • 210
  • 236
1

As far as I know, on windows XP at least, you can put your vim files in your $HOME directory in a subdirectory called 'vimfiles'.

And you shoud have read/write access to that directory.

If you want to check where Vim is looking for config files in runtime, use :echo &rtp

You should at least see the default system wide vim directory and your home directory.

If this is a personal install, you'd better put everything in your home.

Have you tried ?

:helptags $HOME/vimfiles/doc

Xavier T.
  • 40,509
  • 10
  • 68
  • 97
1

There is a how-to here Take ownership Win 7 on how to grant user access to a folder and subfolders, which will allow me to set the ~/vim folder and subs to have write access.

sayth
  • 6,696
  • 12
  • 58
  • 100
  • I have tested this and it allows full writing for cream to save settings I now have :help rails available – sayth Nov 20 '10 at 01:39