What is the vim equivalent of emacs' ctrl-k? -
how can delete current cursor position end of line in vim's insert mode?
i know can d
in command mode, , know can delete cursor position beginning of line in insert mode ctrl-u, i'm guessing should possible.
if you're in insert mode , want execute single normal mode command, can press:
ctrl+o
after normal mode command has executed, you'll returned insert mode. so, can use d way:
ctrl+od
Comments
Post a Comment