如何设置插入console.log()
的快捷方式并将其包装在Sublime Text中的当前选择中,而不安装任何插件或额外的第三方内容?
答案 0 :(得分:20)
所以我找到了答案。以为我会在这里为其他人添加:
转到Sublime Text 2 > Preferences > Key Bindings - User
并将此JSON添加到文件中:
[
{ "keys": ["alt+d"],
"command": "insert_snippet",
"args": {
"contents": "console.log(${1:}$SELECTION);${0}"
}
}
]
在按console.log()
时,在当前光标位置插入alt+d
。