为什么宏不起作用?

时间:2018-08-05 14:28:35

标签: macros sublimetext3 sublimetext2 sublimetext sublime-text-plugin

这里是宏,由于某种原因,它不起作用:

[
    { "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})

为什么宏不起作用?

1 个答案:

答案 0 :(得分:1)

该宏无效,因为用于定义它的JSON无效; args键需要用双引号引起来,但不是。结果,宏将无法加载,因此无法执行。

如果您的配色方案支持,则无效字符将突出显示,以指示问题所在。

更正后的版本为:

[
    { "command": "split_selection_into_lines" },
    { "command": "move_to", "args": {"to": "hardeol"} },
    { "command": "move_to", "args": {"to": "hardbol", "extend": true} },
]