Error trying to return to normal mode in vim command window

When I open a command prompt window to edit a complex command line in vim, I expect that I can go back and exit insert / normal mode to edit, like in any other buffer. (What is the point of the command line window, right? So what can I do?) But instead, when I press ESC to return to normal mode, I get the following:

Error detected while processing function <SNR>15_CloseStackPop:
line    3:
E11: Invalid in command-line window; <CR> executes, CTRL-C quits:         pclose

I play to try to figure it out, but I donโ€™t have much to continue. vim --noplugindoesn't seem to have this problem, so it is clearly one of the plugins, but which one? I have a lot of them. "line 3" of the file? What does "E11" mean?

+3
source share
2

, 'autoclose. pclose <SID>CloseStackPop, Escape .

, - : <SID>, ( ) <SID>Foo, Vim <SNR>4321_Foo. 15_CloseStackPop, , <SNR> - , grep CloseStackPop -r ~/.vim/plugins, .

+4

Ctrl + C Escape. .vimrc . vi. , , , . , , .

+1

Source: https://habr.com/ru/post/1785838/


All Articles