default.keymap
已将pmeta-shift-s
绑定到:save-as
,但我想将其重新绑定到:save-all
。我将以下内容添加到user.keymap
:
;; Remove the default keybinding
{:- {:editor {"pmeta-shift-s" [:save-as]}}}
;; Add my keybinding
{:+ {:app {"pmeta-shift-s" [:save-all]}}}
我保存了我的user.keymap
,LightTable表示重新加载了键盘图,但按pmeta-shift-s
仍会弹出“另存为”对话框。我做错了什么?
编辑:我相信这是一个错误,所以:https://github.com/LightTable/LightTable/issues/1180
答案 0 :(得分:3)
显然这不是错误,: - 和:+键必须出现在同一张地图中:
{:- {:editor {"pmeta-shift-s" [:save-as]}}
:+ {:app {"pmeta-shift-s" [:save-all]}
:editor {"alt-w" [:editor.watch.watch-selection]
"alt-shift-w" [:editor.watch.unwatch]
"f3" [:find.next]}
:tabs {"pmeta-pagedown" [:tabs.next]
"pmeta-pageup" [:tabs.prev]}}}}