summaryrefslogtreecommitdiff
path: root/helm-grep.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2018-11-13 10:23:41 +0100
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2018-11-13 10:23:41 +0100
commit4e25dd9331d2bec9056a74c05433a9e16f9c3bff (patch)
tree3b775eda434940c61005b1cf633c2b49a59d7eb5 /helm-grep.el
parentd5c6e0037dbafc47dc37455ab378897ccb2132fb (diff)
Use helm-delete-backward-no-update in grep maps as well
* helm-grep.el (helm-grep-map): Do it. (helm-pdfgrep-map): Do it.
Diffstat (limited to 'helm-grep.el')
-rw-r--r--helm-grep.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/helm-grep.el b/helm-grep.el
index 24451bd1..a4add2c1 100644
--- a/helm-grep.el
+++ b/helm-grep.el
@@ -287,6 +287,7 @@ Have no effect when grep backend use \"--color=\"."
(define-key map (kbd "C-c o") 'helm-grep-run-other-window-action)
(define-key map (kbd "C-c C-o") 'helm-grep-run-other-frame-action)
(define-key map (kbd "C-x C-s") 'helm-grep-run-save-buffer)
+ (define-key map (kbd "DEL") 'helm-delete-backward-no-update)
(when helm-grep-use-ioccur-style-keys
(define-key map (kbd "<right>") 'helm-execute-persistent-action)
(define-key map (kbd "<left>") 'helm-grep-run-default-action))
@@ -298,6 +299,7 @@ Have no effect when grep backend use \"--color=\"."
(set-keymap-parent map helm-map)
(define-key map (kbd "M-<down>") 'helm-goto-next-file)
(define-key map (kbd "M-<up>") 'helm-goto-precedent-file)
+ (define-key map (kbd "DEL") 'helm-delete-backward-no-update)
map)
"Keymap used in pdfgrep.")