working system
This commit is contained in:
commit
e0ad4ea627
53 changed files with 2927 additions and 0 deletions
13
lisp/init-isearch.el
Normal file
13
lisp/init-isearch.el
Normal file
|
@ -0,0 +1,13 @@
|
|||
;;; init-isearch.el --- isearch settings -*- lexical-binding: t -*-
|
||||
;;; Commentary:
|
||||
;;; Code:
|
||||
|
||||
;; Show number of matches while searching
|
||||
(when (maybe-require-package 'anzu)
|
||||
(add-hook 'after-init-hook 'global-anzu-mode)
|
||||
(setq anzu-mode-lighter "")
|
||||
(global-set-key [remap query-replace-regexp] 'anzu-query-replace-regexp)
|
||||
(global-set-key [remap query-replace] 'anzu-query-replace))
|
||||
|
||||
(provide 'init-isearch)
|
||||
;;; init-isearch.el ends here
|
Loading…
Add table
Add a link
Reference in a new issue