使用Sublime文本2在块上添加#views

时间:2015-01-19 15:13:40

标签: comments sublimetext2 sublimetext sublimetext3 shortcut

我想知道在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"

2 个答案:

答案 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" } }

enter image description here

enter image description here

enter image description here

答案 1 :(得分:-1)

行评论

CTRL + /

CTRL + Shift + / 阻止评论