Re: [Vim-latex-devel] help needed with \ll and \lv shortcuts
Brought to you by:
srinathava,
tmaas
From: Benji F. <be...@me...> - 2003-01-08 21:21:30
|
Charles Boncelet wrote: > As for your suggestion: > > :map \ll > No mapping found. > > I'm using gvim 6.1. Yes, I was unclear. I can type > the letters :-), but nothing happens when I do. > > I did what I thought was a correct install. Now > I have some idea what's wrong (no mapping found). > > Thanks, > Charlie Boncelet Maybe you have set mapleader? :echo mapleader (If it is undefined, you will get an error message. If it is defined, try using its value instead of "\".) Maybe you have a terminal-only vim? :echo has("gui") (I do not know why, but these maps are only defined if this returns 1, true. We should probably change this...) Maybe the right files are not being sourced? (Unlikely, since you said the menu works.) :scriptnames and look for something line .../ftplugin/latex-suite/main.vim . HTH --Benji Fisher |