Did you quit MacVim and restart it? That's necessary if you have
enabled the quickstart option so the new files are picked up.
> More, I also saw that plugins have the same folders structures, so I
> guessed I had just to copy their content into the same folder in
> the .vim folder but I got a "tags" file that was just duplicated into
> two different plugins, had I to join their contents?
Was it doc/tags? You don't need to copy this file. Just run
:helptags ~/.vim/doc after installing new plugins with
documentation then it's automatically updated.
> Thanks to everyone that can help me, it seems really difficult to
> install plugins in Vim even if all devs just say "unpack it into
> your .vim folder" it seems not working for me.
That's normally how it works. Most scripts also describe how they
can be installed.
Simon
--
+ privacy is necessary
+ using http://gnupg.org
+ public key id: 0x92FEFDB7E44C32F9
There are several sub-directories inside ~/.vim, if they do not exits,
mkdir them manually.
after
autoload
colors
compiler
doc
ftplugin
indent
keymap
plugin
syntax
plugin files should be copies to the `plugin' folder and similarly
other types of files.
--
regards,
====================================================
GPG key 1024D/4434BAB3 2008-08-24
gpg --keyserver subkeys.pgp.net --recv-keys 4434BAB3
What is your 'runtimepath' option set to?
Does it include the $HOME/.vim directory?
--
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Gregory H. Margo
gmargo at yahoo/com, gmail/com, pacbell/net; greg at margofamily/org
The plugin with this link isn't a Textile plugin but a HTML
plugin.
> , then I unpacked it into ~/.vim/ so that I have a situation like:
>
> /doc/
> tags
> textile.txt
> /ftplugin/
> textile.vim
> html-macros.vim
> /plugin/
> textile.vim
> /syntax/
> textile.vim
Run :scriptnames to check if the script was loaded.
> Now, restarting, MacVim, and creating a .textile file I can see the
> syntax higlighted, but with :helptags ~/.vim/doc it doesn't happen
> anything.
That should be fine. :helptags doesn't cause any output. It
updates doc/tags so it contains all tags of the files in doc/. So
that the :help completion and tag jumping works.
See :help helptags for more information.
> More, If I want to install another plugin there will be another tags
> file that, I suppose, I have to drag and drop into the doc folder… how
> can do it without override it?
Just ignore the tags file (or you could overwrite the existing
one) and run :helptags after installing the plugin and its files.
> But, apart that, I am still not able to use it. :/
>
> Thanks again for your help.
Simon
--
+ privacy is necessary
+ using http://gnupg.org
set nocp
filetype plugin on
(you may want filetype plugin indent on instead)
Regards,
Chip Campbell