這正是我加入到我的keycap.cson
文件,以使這項工作:
'atom-text-editor':
'ctrl-left': 'editor:move-to-previous-subword-boundary'
'ctrl-right': 'editor:move-to-next-subword-boundary'
'ctrl-shift-left': 'editor:select-to-previous-subword-boundary'
'ctrl-shift-right': 'editor:select-to-next-subword-boundary'
也意識到keymap.cson
是CSON格式。就像JSON一樣,你不能通過寫兩次來「附加」到文件中的鍵。例如,如果你寫了這個:
'atom-text-editor':
'ctrl-left': 'editor:move-to-previous-subword-boundary'
'ctrl-right': 'editor:move-to-next-subword-boundary'
...later in the file...
'atom-text-editor':
'cmd-l': 'go-to-line:toggle'
那麼你的子字快捷方式將通過去到線快捷覆蓋。內部CSON解析器不會「合併」重複鍵atom-text-editor
的值。
您現在可能已經解決了這個問題,但我在答案中增加了另一種可能性,可以解釋爲什麼它不適合您。 (這個我也是) –