Mr.SpOOn wrote: > Hi, > is it possible to use CTags on a different machine through a network? > > I mean, I have Vim on my machine, with CTags. I use netrw to work on a > server where I don't jave CTags. Is there any way to make it work? >
As undoubtedly you're aware, ctags is a separate utility from vim, and is not netrw-aware. So, if you can generate a tags file for what you're interested in, then you can modify it to use netrw-style urls Example: local tag SomeFileFunction some/path/somefile.c /^void SomeFileFunction(int argshere)$/; Example: transformed tag SomeFileFunction scp://HOSTNAME/some/path/somefile.c /^void SomeFileFunction(int argshere)$/; Vim can work with these transformed tags, using netrw, and bring up the remote file. Regards, Chip Campbell --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~----------~----~----~----~------~----~------~--~---
