当前位置: 首页 > 工具软件 > VSCode Neovim > 使用案例 >

vscode neovim 特殊写法两个 inoremap jj jk <ESC>

松嘉颖
2023-12-01
  // vscode 特殊写法两个 inoremap jk <ESC>
  {
    "command": "vscode-neovim.compositeEscape1",
    "key": "j",
    "when": "editorTextFocus && neovim.ctrlKeysInsert && neovim.init && neovim.mode == 'insert'",
    "args": "j"
  },
  {
    "command": "vscode-neovim.escape",
    "key": "j k",
    "when": "editorTextFocus && neovim.ctrlKeysInsert && neovim.init && neovim.mode == 'insert'",
    "args": "jk"
  },

参考链接: [Question] Insert mode mappings #52

 类似资料: