[org] bind M-h to default-indent-new-line

This commit is contained in:
contrapunctus 2021-02-22 04:07:31 +05:30
parent 2f9ddc4e04
commit 3de833ab8c
1 changed files with 3 additions and 2 deletions

View File

@ -23,7 +23,7 @@ At first I decided to remap all Emacs, Boon, and Hydra bindings, but it turned o
(general-auto-unbind-keys)
;; Most if not all of these are translations of their earlier QWERTY bindings.
(general-def
"M-h" 'default-indent-new-line
"M-h" 'default-indent-new-line ;; see also org-mode
"M-'" 'sp-indent-defun
"C-j" 'ctl-x-map
"M-n M-n" 'font-lock-fontify-block
@ -1296,7 +1296,8 @@ _u_: next word ^_l_: edit lines^ _s_: next whole symbol
"C-c C--" 'org-ctrl-c-minus
"C-c ]" 'cp-org-set-tags
"C-c ," 'org-metaleft
"C-c ." 'org-metaright)
"C-c ." 'org-metaright
"M-h" 'default-indent-new-line)
(mapc (lambda (pair)
(add-to-list 'org-file-apps pair))
'(("txt" . emacs)