TextMate:转到行中第一个非空白字符的快捷方式

发布于 2024-11-24 09:22:17 字数 289 浏览 1 评论 0原文

我真的很喜欢 TextMate。然而,在使用了很长一段时间并搜索了几次之后,我一直无法找到一个快捷方式,可以按照我想要的方式将我带到行的开头。我通常希望光标位于行的开头,但在空格之后。

例如,在下面的代码中,如果光标位于 puts 'hi' 行的末尾,然后我输入 ⌘ ←,它将把光标放在行的最开头,我宁愿将光标放在行开头的“p”旁边。有这样的捷径吗?

class Test
  def greet
    puts 'hi'
  end
end

I really like TextMate. However, after using it for a long time and searching several times, I haven't been able to find a shortcut that takes me to the beginning of the line the way I want. I commonly want the cursor at the beginning of the line, but after the whitespace.

For example, in the following code if the cursor is at the end of the line with puts 'hi', and then I type ⌘ ←, it will put the cursor at the very beginning of the line, and I would rather that it put the cursor next to the 'p' at the beginning of the line. Is there such a shortcut?

class Test
  def greet
    puts 'hi'
  end
end

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

瀞厅☆埖开 2024-12-01 09:22:17

虽然这不是一键式解决方案,但当我想这样做时,我按...

  1. CMD + ←
  2. OPT + →

Although it's not a one-keypress solution, when I want to do that I press...

  1. CMD + ←
  2. OPT + →
冰之心 2024-12-01 09:22:17

我目前没有安装 textmate,但我相信您可以录制一个宏,跳转到行首,然后向前搜索 (?<=\s*)(?=[^\s] +)

I don't have textmate installed at the moment but I believe you can record a macro that jumps to the beginning of the line then searches forward for (?<=\s*)(?=[^\s]+).

温柔一刀 2024-12-01 09:22:17

这里已经很好地解释了

  • 按 ⌥⌘M 开始录制宏
  • 按 ⌘← 转到行首
  • 按 ⌘F 并启用正则表达式搜索 [^\s]|\n(感谢 Abhi Beckert)
  • 按 ← 转到选择的开头(取消选择)
  • 按 ⌥⌘M 停止录制宏。
  • 按 ⌃⌘M 保存宏
  • 为宏指定一个名称和一个等效键(我使用 ⌘← 覆盖正常的转到行首行为)

我将 home 绑定到此宏。

It has been nicely explained here:

  • Press ⌥⌘M to start recording a macro
  • Press ⌘← to go to the beginning of the line
  • Press ⌘F and search for [^\s]|\n with regular expressions enabled (Thanks to Abhi Beckert)
  • Press ← to go to beginning of selection(unselecting)
  • Press ⌥⌘M to stop recording the macro.
  • Press ⌃⌘M to save your macro
  • Give the macro a name and a key equivalent (I used ⌘← to overwrite the normal go to beginning of line behaviour)

I bound home to this macro.

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