Hi, On 19.01.2009, at 18:11, Tokyo Dan wrote:
> 1. What is the "mvim" and what do I do with it? It's a small script that you can use to open files from Terminal.app. I copied it to /usr/loca/bin. See `:help mvim` in MacVim for more information. > 2. Does MacVim have a plugin folder where I can install "taglist.vim"? > > According to the taglist.txt help file: > > "unzip the files to the $HOME/.vim or the $HOME/vimfiles or the > $VIM/vimfiles directory" > > I don't have any of these directories. Create it, with `mkdir ~/.vim` in Terminal.app (Finder won't show that directory unless you tell Finder to show hidden files). > 3. How do I install and configure Exuberant Ctags for use with MacVim? This is from memory, so take this with a grain of salt. First, install Exuberant Ctags (for example, by installing MacPorts and then doing `port install ctags`). Then go to a directory that contains source code you want to index and write `ctags -R .`. This will create a file called "tags". Now, in MacVim, do `:set tags+=/path/to/directory/where/ you/ran/ctags/tags`, and then Ctrl-] on a word to jump to its definition. Nico --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_mac" maillist. For more information, visit http://www.vim.org/maillist.php -~----------~----~----~----~------~----~------~--~---
