Get rid of gpolonkai/isearch-regexp
isearch is good in itself, so this also rebinds isearch commands to their rightful bindings.
This commit is contained in:
parent
d8eb235b25
commit
38c2dacedc
@ -3150,14 +3150,6 @@ Because that’s still my favourite language.
|
||||
* Key bindings
|
||||
|
||||
#+begin_src emacs-lisp
|
||||
(defun gpolonkai/isearch-regexp (prefix)
|
||||
"Call `isearch-forward-regex'. If PREFIX is non-nil, call `isearch-backward-regex' instead."
|
||||
(interactive "P")
|
||||
(call-interactively
|
||||
(if prefix
|
||||
'isearch-backward-regexp
|
||||
'isearch-forward-regexp)))
|
||||
|
||||
(defvar gpolonkai/transpose-map (make-sparse-keymap)
|
||||
"Map for transpose commands.")
|
||||
(define-prefix-command 'gpolonkai/transpose-map)
|
||||
@ -3179,9 +3171,9 @@ Because that’s still my favourite language.
|
||||
("C-h C-k" . find-function-on-key)
|
||||
("C-h C-v" . find-variable)
|
||||
("M-q" . sachachua/fill-or-unfill-paragraph)
|
||||
("C-r" . gpolonkai/isearch-regexp)
|
||||
("C-r" . isearch-backward-regexp)
|
||||
("C-M-r" . isearch-backward)
|
||||
("C-s" . consult-line)
|
||||
("C-s" . isearch-forward-regexp)
|
||||
("C-M-s" . isearch-forward)
|
||||
("M-t" . gpolonkai/transpose-map)
|
||||
("C-z" . nil)
|
||||
|
Loading…
Reference in New Issue
Block a user