From f7e9abbcb11aa8798914b20ccc664cbb8e56afc2 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Tue, 9 May 2023 00:50:10 +0100 Subject: [PATCH] feat(text-editing): remove excess keybindings for smart-shift They were mostly getting in the way to perform regular operations after performing a shift. --- modules/text-editing/siren-smart-shift.el | 6 ------ 1 file changed, 6 deletions(-) diff --git a/modules/text-editing/siren-smart-shift.el b/modules/text-editing/siren-smart-shift.el index 91e27c1..122224a 100644 --- a/modules/text-editing/siren-smart-shift.el +++ b/modules/text-editing/siren-smart-shift.el @@ -10,8 +10,6 @@ :general ("C-c [" 'smart-shift-left) ("C-c ]" 'smart-shift-right) - ("M-{" 'smart-shift-left) - ("M-}" 'smart-shift-right) :config ;; Override default keymap adding support additional keybindings once @@ -22,10 +20,6 @@ (let ((map (copy-keymap smart-shift-mode-map))) (define-key map (kbd "[") 'smart-shift-left) (define-key map (kbd "]") 'smart-shift-right) - (define-key map (kbd "C-b") 'smart-shift-left) - (define-key map (kbd "C-f") 'smart-shift-right) - (define-key map (kbd "C-p") 'smart-shift-up) - (define-key map (kbd "C-b") 'smart-shift-down) (define-key map (kbd "") 'smart-shift-left) (define-key map (kbd "") 'smart-shift-right) (define-key map (kbd "") 'smart-shift-up)