gpt4 book ai didi

atom-editor - Atom - 子词导航键绑定(bind)

转载 作者:行者123 更新时间:2023-12-01 02:07:28 26 4
gpt4 key购买 nike

在我的 keymap.cson文件我有以下内容:

'atom-text-editor':
'ctrl-left': 'editor:move-to-previous-subword-boundary'
'ctrl-right': 'editor:move-to-next-subword-boundary'

但是,我的编辑器不会选择这些新绑定(bind)(即使在重新启动后)。这两个( ctrl-alt-X )的默认键绑定(bind)也不起作用。

我正在使用带有所有核心包的 Atom 1.0.2。

最佳答案

这正是我添加到我的 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 的值键。

关于atom-editor - Atom - 子词导航键绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31379887/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com