0
我需要從剪貼板中獲取字符串,然後使用它進行一些操作,運行默認的查找面板並將字符串粘貼到此處。崇高的插件。顯示查找面板和粘貼文本
class ExampleCommand(sublime_plugin.TextCommand):
def run(self, edit):
s = sublime.get_clipboard()
try:
s = s[:s.index('\n')]
except:
pass
self.view.run_command('show_panel', *args*)
self.view.run_command('paste')
在ARGS我試圖寫這個片段的各種不同的解釋:
"args": {"panel": "find", "reverse": false} },
是的!這是完美的工作。謝謝! (false - > False) –