SublimeTextで効いていた以下の操作を有効化するためのキー設定。
個人的に無いと不便かつ毎回設定を忘れるのでメモ。
- Ctrl+Shift+A : 現在のカーソル位置から行頭まで選択
- Ctrl+Shift+E : 現在のカーソル位置から行末まで選択
以下はついでに入れておいた
- Ctrl+Shift+→ : 現在のカーソル位置から次の単語の先頭まで選択/選択解除
- Ctrl+Shift+← : 現在のカーソル位置から前の単語の末尾まで選択/選択解除
手順
- cmd+K→cmd+Sで
keybinding.json
を開く - 以下をユーザ設定側に追加
[{
"key": "ctrl+shift+a",
"command": "cursorHomeSelect",
"when": "editorTextFocus"
}, {
"key": "ctrl+shift+e",
"command": "cursorEndSelect",
"when": "editorTextFocus"
}, {
"key": "ctrl+shift+left",
"command": "cursorWordStartLeftSelect",
"when": "editorTextFocus"
}, {
"key": "ctrl+shift+right",
"command": "cursorWordEndRightSelect",
"when": "editorTextFocus"
}]