lang/org: fix TAB override in GUI emacs
Not sure if this was a recent change (28.0.50+), but a new conditional keybind in outline-mode-cycle-map was overriding TAB in insert mode in org-mode (in GUI Emacs).
This commit is contained in:
parent
d289fac8d3
commit
2855351b2c
1 changed files with 5 additions and 0 deletions
|
@ -688,6 +688,11 @@ between the two."
|
||||||
#'+org-delete-backward-char-and-realign-table-maybe-h)
|
#'+org-delete-backward-char-and-realign-table-maybe-h)
|
||||||
|
|
||||||
(map! :map org-mode-map
|
(map! :map org-mode-map
|
||||||
|
;; Recently, a [tab] keybind in `outline-mode-cycle-map' has begun
|
||||||
|
;; overriding org's [tab] keybind in GUI Emacs. This is needed to undo
|
||||||
|
;; that, and should probably be PRed to org.
|
||||||
|
[tab] #'org-cycle
|
||||||
|
|
||||||
"C-c C-S-l" #'+org/remove-link
|
"C-c C-S-l" #'+org/remove-link
|
||||||
"C-c C-i" #'org-toggle-inline-images
|
"C-c C-i" #'org-toggle-inline-images
|
||||||
;; textmate-esque newline insertion
|
;; textmate-esque newline insertion
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue