17

我在使用 ST2 的 OS X 10.8.4 上。当我使用 Home 和 End 键时,视口会移动,而光标会被单独留下。这是标准的 Mac 行为,也是我所期望的。

但是,当我使用 Page Up (pageup/pgup) 和 Page Down (pagedown/pgdn) 时,光标会随着视口移动。这不是其他 Mac 应用程序的行为方式,我也希望将光标单独留在这些键上。

通过将其添加到我的键绑定中,我已经能够完成这个工作:

[
   { "keys": ["pageup"], "command": "scroll_lines", "args" : {"amount": 30.0} },
   { "keys": ["pagedown"], "command": "scroll_lines", "args" : {"amount": -30.0} }
]

但是,那里的金额是硬编码的。看起来 viewport_extent 会让我得到视口的高度,但我怎样才能在键绑定文件中使用它呢?这甚至是正确的解决方案吗?我觉得要获得这种行为是一项非常艰巨的工作。

提前致谢。

4

3 回答 3

17

只是使用Fn+up向上翻页和向下翻页Fn+down

于 2016-05-13T15:34:57.910 回答
8

为此需要一个文本插件。感谢 ST 论坛上的用户 bizoo,您不必自己编写以下代码:

http://www.sublimetext.com/forum/viewtopic.php?f=3&t=12793

这完全符合我的预期。


Sublime Text 3 更新:您可以按照以下说明进行操作,稍作更改,文件应以.py(例如scroll_lines_fixed.py)结尾,并且应在~/Library/Application Support/Sublime Text 3/Packages/User/文件夹中松散。


Sublime Text 2 更新:这不清楚,并且还使用了一个裸露的 URL,可以想象将来会死掉。所以这里有一个关于你需要做什么的更完整的解释。

  1. 将这四行添加到 Sublime Text 2 > Preferences > Key Bindings - User,在文件中已经存在的任何方括号内:

    [
        { "keys": ["ctrl+up"], "command": "scroll_lines_fixed", "args": {"amount": 1.0 } },
        { "keys": ["ctrl+down"], "command": "scroll_lines_fixed", "args": {"amount": -1.0 } },
        { "keys": ["pageup"], "command": "scroll_lines_fixed", "args" : {"by": "pages", "amount": 1.0 } },
        { "keys": ["pagedown"], "command": "scroll_lines_fixed", "args" : {"by": "pages", "amount": -1.0 } }
    ]
    
  2. 在 Sublime Text 中,从菜单栏中选择 Tools > New Plugin... 选项。
  3. 用这个替换新文件的内容:

    import sublime, sublime_plugin
    
    class ScrollLinesFixedCommand(sublime_plugin.TextCommand):
       """Must work exactly as builtin scroll_lines command, but without moving the cursor when it goes out of the visible area."""
       def run(self, edit, amount, by="lines"):
          # only needed if one empty selection
          if by != "lines" or (len(self.view.sel()) == 1 and self.view.sel()[0].empty()):
             maxy = self.view.layout_extent()[1] - self.view.line_height()
             curx, cury = self.view.viewport_position()
             if by == "pages":
                delta = self.view.viewport_extent()[1]
             else:
                delta = self.view.line_height()
             nexty = min(max(cury - delta * amount, 0), maxy)
             self.view.set_viewport_position((curx, nexty))
          else:
             self.view.run_command("scroll_lines", {"amount": amount})
    
  4. 将文件保存到 ~/Library/Application Support/Sublime Text 2/Packages/ScrollLinesFixed/。您将需要创建 ScrollLinesFixed 文件夹。
  5. 没有第5步。
于 2013-06-21T09:30:59.487 回答
5

只是我的 2 美分,但我的设置可以使用以下内容向上或向下滚动:

{ "keys": ["super+up"], "command": "scroll_lines", "args": {"amount": 1.0} },
{ "keys": ["super+down"], "command": "scroll_lines", "args": {"amount": -1.0} }

我使用的是 Mac,所以“超级”键是命令键,它是空格键左侧(或右侧)的第一个键。不确定 Windoze 上的等价物是什么;也许它是“开始”键或其他东西。无论如何,就像一个魅力。

于 2013-10-29T15:13:31.980 回答