Sublime - 转到第一个选择 'Find in Files' 的键盘快捷键

Sublime - Keyboard shortcut to go to first selection of 'Find in Files'

当我在 Sublime Text 中使用 'Find in Files' 搜索关键字时,我总是必须使用鼠标单击我想在该文件中转到的选择。有什么办法可以用我的键盘来跳转选择吗?或者是否有任何插件可以做到这一点?

默认情况下,您可以使用 Find > Find Results 中的菜单项或其关联的键绑定(在菜单中可见)在查找操作的所有结果之间导航。这样做,结果将按顺序向前或向后移动,如果有很多结果,这可能是可取的,也可能不是可取的。

除了通常的文件导航之外,没有任何导航键可以在文件输出中跳转,但您可以使用插件添加这样的导航键:

import sublime
import sublime_plugin

class JumpToFindMatchCommand(sublime_plugin.TextCommand):
    """
    In a find in files result, skip the cursor to the next or previous find
    match, based on the location of the first cursor in the view.
    """
    def run(self, edit, forward=True):
        # Find the location of all matches and specify the one to navigate to
        # if there aren't any in the location of travel.
        matches = self.view.find_by_selector("constant.numeric.line-number.match")
        fallback = matches[0] if forward else matches[-1]

        # Get the position of the first caret.
        cur = self.view.sel()[0].begin()

        # Navigate the found locations and focus the first one that comes
        # before or after the cursor location, if any.
        pick = lambda p: (cur < p.begin()) if forward else (cur > p.begin())
        for pos in matches if forward else reversed(matches):
            if pick(pos):
                return self.focus(pos)

        # not found; Focus the fallback location.
        self.focus(fallback)

    def focus(self, location):
            # Focus the found location in the window
            self.view.show(location, True)

            # Set the cursor to that location.
            self.view.sel().clear()
            self.view.sel().add(location.begin())

这实现了一个新命令jump_to_find_match,它采用可选参数forward来确定跳转是向前还是向后,并将视图集中在下一个或上一个查找结果上在文件中第一个光标的光标位置,根据需要换行。

结合此插件,可以设置如下键绑定以使用命令。这里我们使用 TabShift+Tab 键;每个中的 context 确保绑定仅在查找结果中处于活动状态。

{
    "keys": ["tab"],
    "command": "jump_to_find_match",
    "args": {
        "forward": true
    },
    "context": [
        { "key": "selector", "operator": "equal", "operand": "text.find-in-files", "match_all": true },
    ],
},

{
    "keys": ["shift+tab"],
    "command": "jump_to_find_match",
    "args": {
        "forward": false
    },
    "context": [
        { "key": "selector", "operator": "equal", "operand": "text.find-in-files", "match_all": true },
    ],
},

这将允许您在查找面板中的匹配项之间导航,但您仍然必须使用鼠标才能真正跳转到相关文件中的匹配项位置。

要通过键盘执行此操作,您可以使用 this plugin,它实现了一个模拟在光标位置双击的命令。只要光标位于查找匹配项上,如下所示的键绑定就会触发命令以响应 Enter 键:

{
    "keys": ["enter"],
    "command": "double_click_at_caret",
    "context": [
        { "key": "selector", "operator": "equal", "operand": "text.find-in-files", "match_all": true },
    ],
},

F4 就是您要找的答案。 Shift+F4 向后搜索。相应的 next_resultprev_result 是默认键绑定的一部分。

    { "keys": ["f4"], "command": "next_result" },
    { "keys": ["shift+f4"], "command": "prev_result" },

尝试使用 Use buffer 按钮在新选项卡中打开结果。