vscode-edgemotion
vscode-edgemotion は haya14busa さんの vim-edgemotion を vscode 向けに移植したものです。
vscode-edgemotion is a port of vim-edgemotion by haya14busa for Visual Studio Code.
Features
コードの端に移動するコマンド vscode-edgemotion.Motion
と vscode-edgemotion.MotionBackward
を提供します。
Provides commands vscode-edgemotion.Motion
and vscode-edgemotion.MotionBackward
to move to the edge of the code.
Settings
ctrl+j
, ctrl+k
でそれぞれ次のエッジ、前のエッジに移動するには次のように keybindings.json を設定します。
To move to the next edge or the previous edge using ctrl+j
and ctrl+k
, configure your keybindings.json
as follows:
{
"key": "ctrl+j",
"command": "vscode-edgemotion.MoveToNextEdge",
"when": "editorTextFocus && !inDebugRepl"
},
{
"key": "ctrl+k",
"command": "vscode-edgemotion.MoveToPreviousEdge",
"when": "editorTextFocus && !inDebugRepl"
},