Ctrl+e
+ Ctrl+f
の操作を Ctrl+f
だけで実行できるようにしてみました。
import sublime import sublime_plugin class FindUnderCursorCommand(sublime_plugin.WindowCommand): def run(self): view = self.window.active_view() view.run_command("slurp_find_string") self.window.run_command("show_panel", {"panel": "find", "reverse": False})
[ { "keys": ["ctrl+f"], "command": "find_under_cursor" }, ]