AtomのCtrl-hをBackspaceに割り当てた

最近emacsからAtomエディタに移行しました。 まずは、どうしても Ctrl+hをBackspaceにしたくて、設定方法を調べてみました。 未来の自分のために書いて残しておくことにします。

環境は、

  • Ubuntu 16.04LTS
  • Atom v1.9.6

です。


Atomのキーバインドを変更するには、「~/.atom/keymap.cson」を編集します。 デフォルトでは、

# Your keymap
#
# Atom keymaps work similarly to style sheets. Just as style sheets use
# selectors to apply styles to elements, Atom keymaps use selectors to associate
# keystrokes with events in specific contexts. Unlike style sheets however,
# each selector can only be declared once.
#
# You can create a new keybinding in this file by typing "key" and then hitting
# tab.
#
# Here's an example taken from Atom's built-in keymap:
#
# 'atom-text-editor':
#   'enter': 'editor:newline'
#
# 'atom-workspace':
#   'ctrl-shift-p': 'core:move-up'
#   'ctrl-p': 'core:move-down'
#
# You can find more information about keymaps in these guides:
# * http://flight-manual.atom.io/using-atom/sections/basic-customization/#_customizing_keybindings
# * http://flight-manual.atom.io/behind-atom/sections/keymaps-in-depth/
#
# If you're having trouble with your keybindings not working, try the
# Keybinding Resolver: `Cmd+.` on OS X and `Ctrl+.` on other platforms. See the
# Debugging Guide for more information:
# * http://flight-manual.atom.io/hacking-atom/sections/debugging/#check-the-keybindings
#
# This file uses CoffeeScript Object Notation (CSON).
# If you are unfamiliar with CSON, you can read more about it in the
# Atom Flight Manual:
# http://flight-manual.atom.io/using-atom/sections/basic-customization/#_cson

のようにコメントのみ書かれたファイルとなっています。

ここに、Ctrl+hのバインディングの設定を追記します。 追記した内容は次の通りです。

'body':
  'ctrl-h': 'core:backspace'

keymap.csonを保存すると、この設定が有効になります。


AtomのCtrl-hをBackspaceに割り当てた話でした。 もっと使いやすくなるキーバインドを模索します。