From 5d8cbb95413046d7b9fb8b8114f37caf76872cb5 Mon Sep 17 00:00:00 2001 From: HyunggyuJang Date: Sat, 27 Feb 2021 12:07:31 +0900 Subject: [PATCH] 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. --- modules/lang/org/config.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/lang/org/config.el b/modules/lang/org/config.el index 0b11936fe..c43e844a2 100644 --- a/modules/lang/org/config.el +++ b/modules/lang/org/config.el @@ -1006,10 +1006,10 @@ compelling reason, so..." (Cleft (concat "C-" .left)) (Cup (concat "C-" .up)) (Cdown (concat "C-" .down)) - (CSright (concat "C-" (capitalize .right))) - (CSleft (concat "C-" (capitalize .left))) - (CSup (concat "C-" (capitalize .up))) - (CSdown (concat "C-" (capitalize .down)))) + (CSright (concat "C-S-" .right)) + (CSleft (concat "C-S-" .left)) + (CSup (concat "C-S-" .up)) + (CSdown (concat "C-S-" .down))) (map! :map evil-org-mode-map :ni [C-return] #'+org/insert-item-below :ni [C-S-return] #'+org/insert-item-above