deadgrep: Add bindings (q, ZZ, ZQ) to quit Deadgrep buffer

This commit is contained in:
Balaji Sivaraman 2018-08-21 23:04:20 +05:30 committed by James N
parent 37fba192e2
commit 41e31d6c12
1 changed files with 6 additions and 1 deletions

View File

@ -39,7 +39,12 @@
"gr" 'deadgrep-restart
(kbd "C-j") 'deadgrep-forward
(kbd "C-k") 'deadgrep-backward
(kbd "TAB") 'deadgrep-toggle-file-results))
(kbd "TAB") 'deadgrep-toggle-file-results
;; Quit
"q" 'quit-window
"ZZ" 'quit-window
"ZQ" 'evil-quit
))
(provide 'evil-collection-deadgrep)
;;; evil-collection-deadgrep.el ends here