1

比如说,我想绑定一个键“ ctrl+d”来复制 LightTable 中的当前行。为此,为了模拟当前行的重复,我想运行一系列操作,例如[:editor.select-line :editor.copy :editor.selection.clear :editor.new-line-indent :editor.line-start :editor.paste]

我如何实现这一目标?

注意:我知道:editor.sublime.duplicateLine重复该行的标签,但这只是示例。一般来说,我想将快捷方式映射到一系列标签/任务。

http://lighttable.com/

4

1 回答 1

1

您是否尝试绑定密钥?你似乎已经设置了大部分。只需打开 user.keymap (ctrl-space "user keymap") 并添加:

[:editor "ctrl+d" :editor.select-line
                  :editor.copy
                  :editor.selection.clear
                  :editor.new-line-indent
                  :editor.line-start
                  :editor.paste]

当然,没有要求你把它放在单独的行上。

还是您要求更复杂的东西?

于 2015-05-23T00:19:07.373 回答