Skip to content

Instantly share code, notes, and snippets.

@alf-ytakada
Created February 26, 2017 06:46
Show Gist options
  • Save alf-ytakada/991d278f4cf5d7fa791c6f923de9555e to your computer and use it in GitHub Desktop.
Save alf-ytakada/991d278f4cf5d7fa791c6f923de9555e to your computer and use it in GitHub Desktop.
vscode emacsのカーソル移動が可能な設定。 vimプラグイン導入済み
// 既定値を上書きするには、このファイル内にキー バインドを挿入します
[
{ "key": "ctrl+d", "command": "deleteRight",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "ctrl+h", "command": "deleteLeft",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "ctrl+f", "command": "cursorRight",
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment