mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-05 03:39:38 +00:00
Place :chords at beginning of use-package-keywords
When it is at the end, the keys don't get bound until after the package has been loaded, which is bad. Placing it at the beginning allows the key bindings to be mapped to auto-loaded functions before the package is loaded, so that a key chord press triggers the package load.
This commit is contained in:
parent
1fb4198933
commit
38dcba6872
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@
|
|||
`(,(macroexpand
|
||||
`(bind-chords :package ,name ,@arg)))))
|
||||
|
||||
(add-to-list 'use-package-keywords :chords t)
|
||||
(add-to-list 'use-package-keywords :chords)
|
||||
|
||||
(provide 'use-package-chords)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue