Skip to content

Instantly share code, notes, and snippets.

@shishi
Created November 23, 2015 10:13
Show Gist options
  • Save shishi/181c4b95c464d0d688ec to your computer and use it in GitHub Desktop.
Save shishi/181c4b95c464d0d688ec to your computer and use it in GitHub Desktop.
AtomのKeybindngのバグ
# こう書くとctrl-aだけ書いたとおりになる
'atom-workspace atom-text-editor':
'ctrl-/': 'core:undo'
'atom-workspace atom-text-editor':
'ctrl-a': 'editor:move-to-beginning-of-line'
# こう書くと両方書いたとおりにならない
'atom-workspace atom-text-editor':
'ctrl-a': 'editor:move-to-beginning-of-line'
'atom-workspace atom-text-editor':
'ctrl-/': 'core:undo'
# こう書いてもctrl-aだけ書いたとおり
'atom-workspace atom-text-editor':
'ctrl-a': 'editor:move-to-beginning-of-line'
'ctrl-/': 'core:undo'
# こう書いてもctrl-aだけ書いたとおり
'atom-workspace atom-text-editor':
'ctrl-/': 'core:undo'
'ctrl-a': 'editor:move-to-beginning-of-line'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment