Hi,

A.J.Mechelynck wrote:
> Eric Leenman wrote:
>>
>> I read on the script that I need to follow the 6 points mentioned.
>>
>> [start of point 1]
>> 1. Download the workspace.zip file and unzip the files to the $HOME/.vim 
>> or the $HOME/vimfiles or the $VIM/vimfiles directory. This should unzip 
>> the following two files (the directory structure should be preserved):
>>
>>      plugin/workspace.vim - main workspace plugin file
>>      doc/workspace.txt    - documentation (help) file
>>
>>   Refer to the 'add-plugin', 'add-global-plugin' and 'runtimepath'
>>   Vim help pages for more details about installing Vim plugins.
>> [end of point 1]
>>
>> What I did:
>> Download the zip file:
>> And stored
>> workspace.txt is stored in C:\Program Files\Vim\vimfiles\doc
                                                   ^^^^^^^^
>> workspace.vim C:\Program Files\Vim\vimfiles\plugin
                                      ^^^^^^^^
>>
>> Is this OK?
> 
> No. These directories are only for what comes bundled with Vim. You should 
> not 
> change anything there, because any upgrade (maybe tomorrow, maybe next year) 
> may silently undo whatever changes you had made.

sorry to correct you, Tony, but I think you missed the "vimfiles" part of
those paths. C:\Program Files\Vim\vimfiles is used for system-wide
configuration files, not for files bundled with Vim.

[snip]

>> [start of point 2]
>> 2. Change to the $HOME/.vim/doc or $HOME/vimfiles/doc or
>>   $VIM/doc/vimfiles directory, start Vim and run the ":helptags ."
          ^^^^^^^^^^^^
Those directories are swapped -- it should have read $VIM/vimfiles/doc.

>>   command to process the workspace help file.
>> [end of point 2]

An easier way to update the tags file is to just start Vim and enter

  :helptags $HOME/.vim/doc
  :helptags $HOME/vimfiles/doc

or

  :helptags $VIM/vimfiles/doc

In you case -- because C:\Program Files\Vim corresponds to $VIM -- the
third one is the correct one. After that, :help workspace should work.

Regards,
Jürgen

-- 
Sometimes I think the surest sign that intelligent life exists elsewhere
in the universe is that none of it has tried to contact us.     (Calvin)

Reply via email to