[autohotkey] reorder line alphabetically

This commit is contained in:
Fabien Dubosson 2016-04-28 15:33:33 +02:00
parent 690d8eaed6
commit ba7d050321
2 changed files with 6 additions and 6 deletions

View File

@ -36,7 +36,7 @@ file.
| Key Binding | Description |
|-------------+------------------------------------|
| ~SPC m h~ | open documentation in =browser= |
| ~SPC m e b~ | execute file with =autohotkey.exe= |
| ~SPC m c c~ | line comment |
| ~SPC m c b~ | block comment |
| ~SPC m c c~ | line comment |
| ~SPC m e b~ | execute file with =autohotkey.exe= |
| ~SPC m h~ | open documentation in =browser= |

View File

@ -19,7 +19,7 @@
:defer t
:init
(spacemacs/set-leader-keys-for-major-mode 'ahk-mode
"cc" 'ahk-comment-dwim
"cb" 'ahk-comment-block-dwim
"h" 'ahk-lookup-web
"eb" 'ahk-run-script)))
"cc" 'ahk-comment-dwim
"eb" 'ahk-run-script
"h" 'ahk-lookup-web)))