On Thu, Dec 3, 2009 at 10:13 AM, Roald de Vries <[email protected]> wrote: > > Dear all, > > I want to use the taglist plugin, but have the following problem: the > old ctags is installed into the /usr/bin/ directory; exuberant ctags > is installed into /opt/local/bin/; in my PATH env var, /opt/local/bin/ > precedes /usr/bin/; in bash, `type ctags` gives /opt/local/bin/, but > in vim ':!type ctags' gives /usr/bin/ (even though /opt/local/bin/ > precedes /usr/bin/ in ':!echo $PATH'). Is this an error in vim? Or do > I miss something? > > Regards, Roald >
This doesn't really address the cause of your problem, but putting the following line in .vimrc should fix it: let Tlist_Ctags_Cmd='/opt/local/bin/ctags' Nat -- You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php
