Visual Studio codeにvimのプラグインをインストールし、インサートモードからコマンドモードへの切り替えに使うescの代わりにjjを使えるように設定したいのですが、ネットで調べて設定したところ正常に動作しません。
"vim.insertModeKeyBindings"ってところに赤波線が引かれてしまっています。どうすれば正常に設定することができるでしょうか?
setting.json
↓
{
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"files.exclude": {
"/.classpath": true,
"/.project": true,
"/.settings": true,
"/.factorypath": true
} // 挿入モードのキーバインド
"vim.insertModeKeyBindings": [
// jjで挿入モードから<Esc>
{ "before": ["j", "j"], "after":["<Esc>"] }
]
}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/04/15 03:00