mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-19 13:43:36 -05:00
evil-org-mode-map's CSright conflict with Cright
I understand that what you tried to accomplish via CSright was; however, it doesn't make any difference from Cright, and so for other navigation keys -- h,j,k,l. I fixed this discrepancy.
This commit is contained in:
@@ -1006,10 +1006,10 @@ compelling reason, so..."
|
|||||||
(Cleft (concat "C-" .left))
|
(Cleft (concat "C-" .left))
|
||||||
(Cup (concat "C-" .up))
|
(Cup (concat "C-" .up))
|
||||||
(Cdown (concat "C-" .down))
|
(Cdown (concat "C-" .down))
|
||||||
(CSright (concat "C-" (capitalize .right)))
|
(CSright (concat "C-S-" .right))
|
||||||
(CSleft (concat "C-" (capitalize .left)))
|
(CSleft (concat "C-S-" .left))
|
||||||
(CSup (concat "C-" (capitalize .up)))
|
(CSup (concat "C-S-" .up))
|
||||||
(CSdown (concat "C-" (capitalize .down))))
|
(CSdown (concat "C-S-" .down)))
|
||||||
(map! :map evil-org-mode-map
|
(map! :map evil-org-mode-map
|
||||||
:ni [C-return] #'+org/insert-item-below
|
:ni [C-return] #'+org/insert-item-below
|
||||||
:ni [C-S-return] #'+org/insert-item-above
|
:ni [C-S-return] #'+org/insert-item-above
|
||||||
|
Reference in New Issue
Block a user