标签: visual-studio-code
我想定义一个键绑定,以在VSCode中插入特定的unicode字符。实现这一目标的正确方法是什么?
答案 0 :(得分:3)
VSCode有一个type命令来处理这种用例:
type
在keybindings.json:
keybindings.json
{ "key": "ctrl+alt+1 s", "command": "type", "args": { "text": "Ψ" } }