Atom.io设置ctrl+delete

通常常见的text editor,在文本前面的空白处按下ctrl+delete,只是删除空白符到单词前面停下,可是Atom.io的默认设置,把空白符后遇到的第一个单词也删掉了。改配置方法是在keymap.cson加入下面代码。atom

'.platform-darwin atom-workspace atom-text-editor':
  'ctrl-left': 'editor:move-to-previous-word-boundary'
  'ctrl-right': 'editor:move-to-next-word-boundary'
  'ctrl-shift-left': 'editor:select-to-previous-word-boundary'
  'ctrl-shift-right': 'editor:select-to-next-word-boundary'
  'ctrl-backspace': 'editor:delete-to-previous-word-boundary'
  'ctrl-delete': 'editor:delete-to-next-word-boundary'

 

Ubuntu 16.04 LTSspa

Atom.io 1.9.2code

相关文章
相关标签/搜索