Pycharm 或 Sublime Text 2 中是否有用于跳出匹配括号的快捷方式?

发布于 2024-12-21 17:48:44 字数 108 浏览 1 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

与之呼应 2024-12-28 17:48:44

以下是我在 Sublime 中的做法:

{ "keys": ["shift+enter"], "command": "move", "args": {"by": "subword_ends", "forward": true} }

Shift-Enter 打破引号和括号,Super-Enter 创建一个新行而不破坏当前行

Here is how I did it in Sublime:

{ "keys": ["shift+enter"], "command": "move", "args": {"by": "subword_ends", "forward": true} }

Shift-Enter breaks out of quotes and brackets, and Super-Enter creates a new line without breaking the current one

云胡 2024-12-28 17:48:44

在 Sublime Text 2 中,Ctrl+M 适用于 () 和 []。

In Sublime Text 2, Ctrl+M works for () and [].

凉城已无爱 2024-12-28 17:48:44

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.

数理化全能战士 2024-12-28 17:48:44

有一个名为“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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文