mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
lang/markdown: fix TAB/S-TAB keys for evil users
They were being masked by the default tab/shiftab keybinds in config/default.
This commit is contained in:
@ -47,6 +47,10 @@ capture, the end position, and the output buffer.")
|
||||
:override #'+markdown-disable-front-matter-fontification-a)
|
||||
|
||||
(map! :map markdown-mode-map
|
||||
:n [tab] #'markdown-cycle
|
||||
:n "TAB" #'markdown-cycle
|
||||
:n [backtab] #'markdown-shifttab
|
||||
:n "<S-tab>" #'markdown-shifttab
|
||||
:i "M-*" #'markdown-insert-list-item
|
||||
:i "M-b" #'markdown-insert-bold
|
||||
:i "M-i" #'markdown-insert-italic
|
||||
|
Reference in New Issue
Block a user