「r<-工具|方案」VS Code 设定快捷键输入想要的文字

R 里面最常用的两个符号是 %>%<-,VS Code 需要设定快捷键。

下面的代码使用了两种不同的命令方式向编辑器插入文字。将内容填入 keybindings.json 文件。

// 将键绑定放在此文件中以覆盖默认值
[

    {
        "key": "alt+-",
        "command": "type",
        "when": "editorTextFocus && editorLangId == 'r'",
        "args": {
            "text": " <- "
        }
    },{
    "key": "shift+cmd+m",
    "command": "editor.action.insertSnippet",
    "when": "editorTextFocus && editorLangId == 'r'",
    "args": {
        "snippet": " %>% $0"
    }
}]

如果想要有其他的快捷键可以照着格式改。

最后推荐来自 赵飞 的很棒的资料 https://docs.qq.com/doc/DY09ibHFPZkhoQ2t2

你可能感兴趣的:(「r<-工具|方案」VS Code 设定快捷键输入想要的文字)