On 4/25/06, SHANKAR R-R66203 <[EMAIL PROTECTED]> wrote: > I am using tags to browse the code. > For the first time, when I press CTRL-] to enter a module, everything works > properly. > > But when I press the CTRL-] second time onwards, I get this annoying Error > message. > ------------------------------------------------------------------- > Error detected while processing function <SNR>8_LoadFTPlugin: > line 3: > E108: No such variable: "b:browsefilter" > ------------------------------------------------------------------- > Although the Error message is reported, the vim takes me properly to the > intended file. > > Why this message is coming and from which file this is coming ? > I tried to grep for "8_LoadFTPlugin", but could not find anywhere. > Any help is appreciated. >
You're grepping for the wrong thing. You want to look for LoadFTPlugin. The leading 8_ is a dynamically created string to give script-local function privacy. (It's in ftplugin.vim). I was thinkiing it might be that you have a mis-matched version of ftplugin.vim somewhere. However, I couldn't find the browsefileter variable in any of the Vim versions that I have, so I don't know for sure what is happening with you.
