vscode配置vim

{
    "editor.fontSize": 16,
    "editor.fontWeight": "normal",
    "editor.fontFamily": " 'Fira Code' ",
    "C_Cpp.enhancedColorization": "enabled",
    "vim.normalModeKeyBindings": [
        {
            "before": ["g","d"],
            "after": ["*"]
        }
    ],
    "vim.hlsearch": true,

}

这样可以实现传统vim中gd命令查找当前光标指向的单词。按下gd之后,可以继续用n或者N来上下跳转。

你可能感兴趣的:(vscode,vim,excel)