Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

No mapping found

Tags:

vim

Starting up vim and then No mapping found shows up at bottom.

running the command: vim -V20logfile

line 3:   redir => res

line 4:     silent! execute a:cmd

line 5:   redir END

line 6:   let &verbosefile = oldverbosefile
like image 583
kevin Avatar asked Mar 05 '13 02:03

kevin


1 Answers

I had the same issue.

I commented out all maps, thinking they were all fine. Sure enough, vim loaded without err.

Then, I reintroduced the mappings until one broke it. Sure enough I had left out the space between the lhs and the rhs. As soon as I corrected this, it worked perfectly again.

like image 105
Don Avatar answered Oct 22 '22 20:10

Don