我得到了插件sublime text 3
,让我可以将光标移动到行号:
import sublime, sublime_plugin
class prompt_goto_lineCommand(sublime_plugin.WindowCommand):
def run(self):
self.window.show_input_panel("Goto Line:", "", self.on_done, None, None)
pass
def on_done(self, text):
try:
line = int(text)
if self.window.active_view():
self.window.active_view().run_command("goto_line", {"line": line} )
except ValueError:
pass
class go_to_lineCommand(sublime_plugin.TextCommand):
def run(self, edit, line):
# Convert from 1 based to a 0 based line number
line = int(line) - 1
# Negative line numbers count from the end of the buffer
if line < 0:
lines, _ = self.view.rowcol(self.view.size())
line = lines + line + 1
pt = self.view.text_point(line, 0)
self.view.sel().clear()
self.view.sel().add(sublime.Region(pt))
self.view.show(pt)
我想改进它,让我将光标移动到包含指定字符串的第一行。这就像文件搜索:例如,如果传递给它,字符串"class go_to_lineCommand"
插件必须将光标移动到第 17 行:
并可能选择 string class go_to_lineCommand
。
问题归结为 find regionWithGivenString
,然后我可以选择它:
self.view.sel().add(regionWithGivenString)
但不知道获取方法regionWithGivenString
。
我尝试过了
- 在 google 上查找:sublime 插件查找并选择文本
- 检查api
但还是没有结果。