Add C-RET/C-S-RET aliases for M-RET/M-S-RET

This commit is contained in:
Henrik Lissner 2019-01-22 18:50:38 -05:00
parent f264a9bc6e
commit 082bdfe865
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -179,7 +179,9 @@
;; Standardize the behavior of M-RET/M-S-RET as a "add new item
;; below/above" key.
:gi [M-return] #'+default/newline-below
:gi [M-S-return] #'+default/newline-above)
:gi [M-S-return] #'+default/newline-above
:gi [C-return] #'+default/newline-below
:gi [C-S-return] #'+default/newline-above)
(if (featurep 'evil)
(load! "+evil-bindings")