From 619ac430178777ce74326dbf1b20c8098e270689 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 24 Aug 2018 01:08:39 +0200 Subject: [PATCH] completion/helm: unbind / #829 Disables special behavior on / and /, which are strange. --- modules/completion/helm/config.el | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/modules/completion/helm/config.el b/modules/completion/helm/config.el index cd614d080..e6d5bdaa1 100644 --- a/modules/completion/helm/config.el +++ b/modules/completion/helm/config.el @@ -65,7 +65,7 @@ be negative.") (def-package! helm :after helm-mode - :init + :preface (setq helm-candidate-number-limit 50 ;; Remove extraineous helm UI elements helm-display-header-line nil @@ -79,8 +79,11 @@ be negative.") helm-display-buffer-default-height 0.25 ;; When calling `helm-semantic-or-imenu', don't immediately jump to ;; symbol at point - helm-imenu-execute-action-at-once-if-one nil) + helm-imenu-execute-action-at-once-if-one nil + ;; disable special behavior for left/right, M-left/right keys. + helm-ff-lynx-style-map nil) + :init (when (and EMACS26+ (featurep! +childframe)) (setq helm-display-function #'+helm-posframe-display) ;; Fix "Specified window is not displaying the current buffer" error