lang/org: fix C-RET/s-RET in org-mode #1146
This commit is contained in:
parent
99fd8b4e1b
commit
b461c99d86
1 changed files with 5 additions and 4 deletions
|
@ -320,10 +320,11 @@ between the two."
|
|||
|
||||
(map! :map org-mode-map
|
||||
;; textmate-esque newline insertion
|
||||
:gi [C-return] (λ! (+org/insert-item 'below))
|
||||
:gi [C-S-return] (λ! (+org/insert-item 'above))
|
||||
:gi [M-return] (λ! (+org/insert-item 'below))
|
||||
:gi [M-S-return] (λ! (+org/insert-item 'above))
|
||||
:gni [C-return] (λ! (+org/insert-item 'below))
|
||||
:gni [C-S-return] (λ! (+org/insert-item 'above))
|
||||
(:when IS-MAC
|
||||
:gni [s-return] (λ! (+org/insert-item 'below))
|
||||
:gni [s-S-return] (λ! (+org/insert-item 'above)))
|
||||
"C-c C-S-l" #'+org/remove-link
|
||||
"C-c C-i" #'org-toggle-inline-images
|
||||
[remap doom/backward-to-bol-or-indent] #'org-beginning-of-line
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue