[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/helm 184afb9703 1/2: Ensure isearch and C-z are not bound
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/helm 184afb9703 1/2: Ensure isearch and C-z are not bound in helm-map |
Date: |
Fri, 16 Jun 2023 07:01:11 -0400 (EDT) |
branch: elpa/helm
commit 184afb97037a78a82377fb8a198f4bf0b942cfa4
Author: Thierry Volpiatto <thievol@posteo.net>
Commit: Thierry Volpiatto <thievol@posteo.net>
Ensure isearch and C-z are not bound in helm-map
---
helm-core.el | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/helm-core.el b/helm-core.el
index 13879cdd5a..5fe04e1d39 100644
--- a/helm-core.el
+++ b/helm-core.el
@@ -421,6 +421,10 @@ i.e. the loop is not entered after running COMMAND."
(define-key map (kbd "C-M-e") #'helm-display-all-sources)
(define-key map (kbd "C-s") #'undefined)
(define-key map (kbd "M-s") #'undefined)
+ (define-key map (kbd "C-r") #'undefined)
+ (define-key map (kbd "C-M-r") #'undefined)
+ (define-key map (kbd "C-M-s") #'undefined)
+ (define-key map (kbd "C-z") #'undefined)
(define-key map (kbd "C-}") #'helm-narrow-window)
(define-key map (kbd "C-{") #'helm-enlarge-window)
(define-key map (kbd "C-c -") #'helm-swap-windows)