Created
November 23, 2015 10:13
-
-
Save shishi/181c4b95c464d0d688ec to your computer and use it in GitHub Desktop.
AtomのKeybindngのバグ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# こう書くと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