autocomplete – 修改引号的auto_match,为Sublime Text 2添加一个额外的引用字符

Sublime Text 2非常有用地关闭了我的所有引号.
是否可以修改它使用的字符?

例如,如果我想在列表中添加`backticks`.

@skuroda的答案非常有用.在Mac OSX上,转到

Sublime Text 2 > Preferences > Key Bindings - User

并在那里粘贴文本.确保它最终包裹在[…](方括号)中.

解决方法

自动配对只是一些专门的键绑定.这应该允许你自动配对反引号.如果您想创建其他自动配对符号,它也应该作为指南.
{ "keys": ["`"],"command": "insert_snippet","args": {"contents": "`$0`"},"context":
    [
        { "key": "setting.auto_match_enabled","operator": "equal","operand": true },{ "key": "selection_empty","operand": true,"match_all": true },{ "key": "following_text","operator": "regex_contains","operand": "^(?:\t| |\\)|]|;|\\}|$)","match_all": true }
    ]
},{ "keys": ["`"],"args": {"contents": "`${0:$SELECTION}`"},"operand": false,"command": "move","args": {"by": "characters","forward": true},"operand": "^`",{ "keys": ["backspace"],"command": "run_macro_file","args": {"file": "Packages/Default/Delete Left Right.sublime-macro"},{ "key": "preceding_text","operand": "`$","match_all": true }
    ]
}

只需将该代码块插入用户密钥绑定即可.

我只是使用认的键绑定作为模板,因此您可能需要进一步修改某些上下文以使其完美地工作.

相关文章

vue阻止冒泡事件 阻止点击事件的执行 <div @click=&a...
尝试过使用网友说的API接口获取 找到的都是失效了 暂时就使用...
后台我拿的数据是这样的格式: [ {id:1 , parentId: 0, name:...
JAVA下载文件防重复点击,防止多次下载请求,Cookie方式快速简...
Mip是什么意思以及作用有哪些