这里是宏,由于某种原因,它不起作用:
[
{ "command": "split_selection_into_lines" },
{ "command": "move_to", args: {"to": "hardeol"} },
{ "command": "move_to", args: {"to": "hardbol", "extend": true} },
]
我可以通过插件执行相同的操作,但是我不喜欢在这里使用它:
import sublime_plugin
class SplitIntoLinesReverseCommand(sublime_plugin.TextCommand):
def run(self, edit):
self.view.run_command("split_selection_into_lines")
self.view.run_command("move_to", {"to": "hardeol"})
self.view.run_command("move_to", {"to": "hardbol", "extend": True})
为什么宏不起作用?
答案 0 :(得分:1)
该宏无效,因为用于定义它的JSON无效; args
键需要用双引号引起来,但不是。结果,宏将无法加载,因此无法执行。
如果您的配色方案支持,则无效字符将突出显示,以指示问题所在。
更正后的版本为:
[
{ "command": "split_selection_into_lines" },
{ "command": "move_to", "args": {"to": "hardeol"} },
{ "command": "move_to", "args": {"to": "hardbol", "extend": true} },
]