S-RET -> insert literal newline
A convention on many text editors and applications is to make RET auto-indent new lines. That has already been done. Another convention is for S-RET to insert an unindented line; this commit adds this convention to Doom. Relevant to #3694
This commit is contained in:
parent
9a5175dd0e
commit
863eb82efd
5 changed files with 19 additions and 8 deletions
|
@ -427,6 +427,13 @@ Continues comments if executed from a commented line. Consults
|
|||
;; which ctrl+RET will add a new "item" below the current one and
|
||||
;; cmd+RET (Mac) / meta+RET (elsewhere) will add a new, blank line below
|
||||
;; the current one.
|
||||
;; auto-indent on newline by default
|
||||
:gi [remap newline] #'newline-and-indent
|
||||
;; insert literal newline
|
||||
:gi "S-RET" #'+default/newline
|
||||
:gi [S-return] #'+default/newline
|
||||
:gi "C-j" #'+default/newline
|
||||
;; add new item below
|
||||
:gn [C-return] #'+default/newline-below
|
||||
:gn [C-S-return] #'+default/newline-above
|
||||
(:when IS-MAC
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue