定义Keybinding以在VSCode中插入特殊字符

时间:2017-11-18 19:34:42

标签: visual-studio-code

我想定义一个键绑定,以在VSCode中插入特定的unicode字符。实现这一目标的正确方法是什么?

1 个答案:

答案 0 :(得分:3)

VSCode有一个type命令来处理这种用例:

keybindings.json

{
    "key": "ctrl+alt+1 s",
    "command": "type",
    "args": {
        "text": "Ψ"
    }
}