No matching found

The launch of vim, and then the not found display is displayed below.

the command is executed: vim -V20logfile

 line 3: redir => res line 4: silent! execute a:cmd line 5: redir END line 6: let &verbosefile = oldverbosefile 
+7
source share
2 answers

I had the same problem.

I commented on all the cards, thinking that everything is in order. Of course, vim loaded without errors.

Then I turned on the display again until I broke it. Of course, I left a space between lhs and rhs. As soon as I fixed it, he did a great job.

+12
source

I found a better way to debug your .vimrc to enable debug and pass it to the log file. Examine the file and find the error. If the error you get is β€œno matching found,” open the log file and search for these words. : / mapping not found.

He will show you where the error comes from. In my case, I found that the error is related to the plugin that I installed. I turned it off and it works fine again.

Run the following command at a command prompt:

 vim -V20 2>&1 | tee logfile 
+3
source

All Articles