From 0ccea5e1cd792d91b385d0af4993eafc80c6804f Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Sat, 4 Jul 2020 11:18:47 +0200 Subject: Unbind C-b in evil motion map Shadows global C-b in evil buffers otherwise --- gui/conf/init.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gui/conf/init.el b/gui/conf/init.el index 3131576..32b219d 100644 --- a/gui/conf/init.el +++ b/gui/conf/init.el @@ -271,12 +271,13 @@ :ensure t :config (global-set-key (kbd "M-x") 'helm-M-x) + (define-key evil-motion-state-map (kbd "C-b") nil) (global-set-key (kbd "C-b") 'helm-mini)) (use-package helm-swoop :ensure t :config - (global-set-key (kbd "C-s") 'helm-swoop) + (global-set-key (kbd "C-s") 'helm-swoop-without-pre-input) (global-set-key (kbd "C-S-s") 'helm-multi-swoop-current-mode)) (global-set-key (kbd "") 'next-buffer) -- cgit v1.2.3