我想知道在sublime上添加#条评论的步骤。
基本上来自像这样的代码
console.log "code here"
console.log "code there"
应用快捷方式,然后获取此类代码
# console.log "code here"
# console.log "code there"
现在我只能用多个光标 Ctrl + D 删除它们。
传统的 Ctrl + / 或 Ctrl + Shift + / 不会#39;工作是因为它提供了这样的评论:
//console.log "code here"
//console.log "code there"
答案 0 :(得分:2)
您可以创建一个宏
[
{"command": "split_selection_into_lines"},
{"command": "move_to", "args": {"to": "bol", "extend": false}},
{"command": "insert", "args": {"characters": "# "}}
]
然后是一个键映射:
{ "keys": ["ctrl+shift+i"], "command": "run_macro_file", "args": { "file": "Packages/User/Snippets/test_snippets/tmp_comment.sublime-macro" } }
答案 1 :(得分:-1)
CTRL + Shift + / 阻止评论