vscode-vim
vscode-vim copied to clipboard
Screen Line/Characters movement support
We added screen line/character movement command in Visual Studio Code in July. The commands is like
cursroMove({to: 'lineStart', inSelectionMode: true});
More details are listed in https://github.com/Microsoft/vscode/issues/2771 . Leveraging thse commands, following Vim commands can be implemented real quick
- g0
- g^
- g$
- gm
- gj
- gk
Thank you for your gread work! I need them. My extention will use them soon.