最好的解决方案是使用插件来做到这一点。
下面的插件可以满足您的需求。它将在当前光标位置下方找到下一个出现的pattern(即&todo 标记),将光标移动到其下方的行,并在窗口中居中该位置。如果在当前光标位置下方找不到pattern,它将从缓冲区顶部再次搜索,提供环绕功能。
将以下 Python 代码复制并粘贴到缓冲区中,并将其保存在 Sublime Text 配置 User 文件夹中为 GoToPattern.py。
import sublime
import sublime_plugin
class GotoPatternCommand(sublime_plugin.TextCommand):
def run(self, edit, pattern):
sels = self.view.sel()
# Optional flags; see API.
flags = sublime.LITERAL | sublime.IGNORECASE
start_pos = sels[0].end() if len(sels) > 0 else 0
find_pos = self.view.find(pattern, start_pos, flags)
if not find_pos and start_pos > 0:
# Begin search again at the top of the buffer; wrap around
# feature, i.e. do not stop the search at the buffer's end.
find_pos = self.view.find(pattern, 0, flags)
if not find_pos:
sublime.status_message("'{}' not found".format(pattern))
return
sels.clear()
sels.add(find_pos.begin())
self.view.show_at_center(find_pos.begin())
row, col = self.view.rowcol(find_pos.begin())
self.view.run_command("goto_line", {"line": row + 2})
# Uncomment for: cursor to the end of the line.
# self.view.run_command("move_to", {"to": "eol"})
添加键绑定:
// The pattern arg, i.e. "&todo", can be changed to anything you want
// and other key bindings can also be added to use different patterns.
{"keys": ["???"], "command": "goto_pattern", "args": {"pattern": "&todo"}}
如果需要,可以将命令面板条目添加到 Default.sublime-commands:
{"caption": "GoToPattern: &todo", "command": "goto_pattern", "args": {"pattern": "&todo"}},
这些链接可能对您有用 ST v. 2 API 和 ST v. 3 API。
附:你知道 Sublime Text 有书签吗? [以防万一你没有。]