You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When in insert mode, if you press CTRL+o then vim allows you to execute one normal mode command. Pressing p causes yankstack to append the text of an echo command.
Buffer:
hello world
In normal mode, press ^ , yw , o , <C-o>, p
Result buffer:
hello world
hello :echo ""
Expected:
hello world
hello
The text was updated successfully, but these errors were encountered:
When in insert mode, if you press CTRL+o then vim allows you to execute one normal mode command. Pressing p causes yankstack to append the text of an echo command.
Buffer:
In normal mode, press
^
,yw
,o
,<C-o>
,p
Result buffer:
Expected:
The text was updated successfully, but these errors were encountered: