Pycharm 或 Sublime Text 2 中是否有用于跳出匹配括号的快捷方式?
Pycharm 或 Sublime Text 2 中是否有快捷方式可以跳出匹配的括号和 "
或 '
对?
现在我按左键将其跳出,痛苦。
Is there a shortcut in Pycharm or Sublime Text 2 for jumping out of matching brackets and "
or '
pairs?
Now I out it by press left, agony.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
以下是我在 Sublime 中的做法:
Shift-Enter 打破引号和括号,Super-Enter 创建一个新行而不破坏当前行
Here is how I did it in Sublime:
Shift-Enter breaks out of quotes and brackets, and Super-Enter creates a new line without breaking the current one
在 Sublime Text 2 中,Ctrl+M 适用于 () 和 []。
In Sublime Text 2, Ctrl+M works for () and [].
PyCharm 中没有具体的快捷方式。您可以使用 Ctrl-Left/Right(这适用于所有上下文中的逐字导航),或使用 Ctrl-W 将选择范围扩展到您需要的范围,然后按向左或向右跳出该范围。
There's no specific shortcut for this in PyCharm. You can use Ctrl-Left/Right (this works for word-by-word navigation in all contexts), or use Ctrl-W to extend the selection to the range you need and then press Left or Right to jump out of it.
有一个名为“BracketHighlighter”的插件。除了突出显示括号和引号之外,它还支持通过按 Alt+Up/Alt+Down 来跳转括号。相当方便。
There is plugin called "BracketHighlighter". Besides of highlighting brackets and quotes, it supports a bracket jumping by pressing Alt+Up/Alt+Down. Quite handy.