是否可以修改它使用的字符?
例如,如果我想在列表中添加`backticks`.
@skuroda的答案非常有用.在Mac OSX上,转到
Sublime Text 2 > Preferences > Key Bindings - User
并在那里粘贴文本.确保它最终包裹在[…](方括号)中.
解决方法 自动配对只是一些专门的键绑定.这应该允许你自动配对反引号.如果您想创建其他自动配对符号,它也应该作为指南.{ "keys": ["`"],"command": "insert_snippet","args": {"contents": "``"},"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 } ]}
只需将该代码块插入用户密钥绑定即可.
我只是使用默认的键绑定作为模板,因此您可能需要进一步修改某些上下文以使其完美地工作.
总结以上是内存溢出为你收集整理的autocomplete – 修改引号的auto_match,为Sublime Text 2添加一个额外的引用字符全部内容,希望文章能够帮你解决autocomplete – 修改引号的auto_match,为Sublime Text 2添加一个额外的引用字符所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)