mirror of
https://codeberg.org/scip/dot-emacs.git
synced 2025-12-17 04:20:57 +01:00
12 lines
258 B
EmacsLisp
12 lines
258 B
EmacsLisp
;; https://github.com/leoliu/ack-el
|
|
|
|
(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)
|