Files
dot-emacs/conf-lisp/grep.el

12 lines
258 B
EmacsLisp
Raw Normal View History

2023-04-12 16:39:35 +02:00
;; https://github.com/leoliu/ack-el
2023-04-12 20:25:04 +02:00
(defun tvd-kill-ack()
;; FIXME: still asks!
(local-set-key (kbd "q") 'kill-buffer-and-window))
(use-package ack
:config
(setq ack-defaults-function 'ack-legacy-defaults))
(add-hook 'ack-mode-hook 'tvd-kill-ack)