求助:光标如何快速跳出花括号
sublime吧
全部回复
仅看楼主
level 8
仅禀 楼主
光标如何在花括号里跳出,具体在右侧花括号的右边。我现在使用ctrl+m,然后shift+},有没快点的方法。
2016年04月04日 11点04分 1
level 1
你用不用 BracketHighlighter?
2016年04月08日 16点04分 3
level 1
BracketHighlighter:
2016年04月08日 16点04分 4
level 1
{ "keys": ["ctrl+,"], "command": "bh_key", "args": { "no_outside_adj": true, "lines" : true, "plugin": { "type": ["__all__"], "command": "bh_modules.bracketselect", "args": { "select": "left" } } } },
{ "keys": ["ctrl+."], "command": "bh_key", "args": { "no_outside_adj": true, "lines" : true, "plugin": { "type": ["__all__"], "command": "bh_modules.bracketselect", "args": { "select": "right"} } } },
2016年04月08日 16点04分 5
这个是在花括号里面跳啊?请问这种方法在BracketHighlighter文档的哪一部分出现的
2016年04月10日 13点04分
@GD6570 你連按兩次就跳出去了
2016年04月10日 20点04分
@GD6570 Example Keybing 改來的
2016年04月10日 20点04分
@2dg001 Example Keybing?我在文档没搜索到相关文档
2016年04月11日 14点04分
level 1
用一個叫 Chain Command 的插件也可以,該插件的用途是使一個快捷鍵可以執行多組命令,執行移動到右括號再往右移動一個字就行了。不過我傾向於盡量減少記憶的快捷鍵。
2016年04月10日 20点04分 6
level 8
仅禀 楼主
原来,并没有这个功能,看来这个得自己用python写个小插件实现,没学过python,暂时用着,以后抽时间学习自己写个。使用安装的原有插件的函数功能拼凑起来实现的话,感觉不如自己开发个好。
2016年04月12日 00点04分 7
複用經過千錘百鍊的代碼(ST的API、Top 100 Plugins)並且將維護的責任丟給該代碼的開發者才是最佳解。
2016年04月12日 00点04分
level 7
我也想知道。
2016年04月12日 01点04分 8
1