Atom editor 有没有更快的方法在atom中执行拼写检查?

Atom editor 有没有更快的方法在atom中执行拼写检查?,atom-editor,Atom Editor,现在,我必须突出显示下划线为拼写错误的单词,然后双击它,然后选择更正拼写,然后选择正确的单词。 我已经厌倦了写这些步骤, 你知道如何更快地完成吗? 我使用vim插件,所以对于任何可以让我避免使用轨迹板/鼠标的解决方案,都可以使用1。默认情况下,键盘快捷键cmd-shift-:(ctrl-shift-:在Windows上)将在光标位于拼写错误的单词上时快速显示更正列表。使用Atom的1.11.0-beta5版本,我必须自己注册拼写检查键盘快捷键 我将以下内容放在我的keymap.cson(编辑->

现在,我必须突出显示下划线为拼写错误的单词,然后双击它,然后选择
更正拼写
,然后选择正确的单词。 我已经厌倦了写这些步骤, 你知道如何更快地完成吗?
我使用vim插件,所以对于任何可以让我避免使用轨迹板/鼠标的解决方案,都可以使用1。

默认情况下,键盘快捷键
cmd-shift-:
ctrl-shift-:
在Windows上)将在光标位于拼写错误的单词上时快速显示更正列表。

使用Atom的1.11.0-beta5版本,我必须自己注册拼写检查键盘快捷键

我将以下内容放在我的keymap.cson(编辑->keymap)中:

资料来源:

'.platform-darwin atom-text-editor':
  'cmd-:': 'spell-check:correct-misspelling'

'.platform-darwin .corrections atom-text-editor':
  'cmd-:': 'core:cancel'

'.platform-win32 atom-text-editor':
  'ctrl-:': 'spell-check:correct-misspelling'

'.platform-win32 .corrections atom-text-editor':
  'ctrl-:': 'core:cancel'

'.platform-linux atom-text-editor':
  'ctrl-:': 'spell-check:correct-misspelling'

'.platform-linux .corrections atom-text-editor':
  'ctrl-:': 'core:cancel'

'.corrections atom-text-editor[mini]':
  'enter': 'core:confirm'
  'tab': 'core:confirm'