|
|
|
@ -466,13 +466,17 @@ This file:
|
|
|
|
|
** avy
|
|
|
|
|
Quick navigation to words
|
|
|
|
|
#+begin_src emacs-lisp
|
|
|
|
|
;;(use-package avy
|
|
|
|
|
;; :config
|
|
|
|
|
;; (avy-setup-default)
|
|
|
|
|
;; :bind(
|
|
|
|
|
;; ("M-g c" . avy-goto-char-2)
|
|
|
|
|
;; )
|
|
|
|
|
;; )
|
|
|
|
|
(use-package avy
|
|
|
|
|
:config
|
|
|
|
|
(avy-setup-default)
|
|
|
|
|
:bind(
|
|
|
|
|
:map own-map
|
|
|
|
|
("jj" . avy-goto-char)
|
|
|
|
|
("j2" . avy-goto-char-2)
|
|
|
|
|
("jw" . avy-goto-word-1)
|
|
|
|
|
("jl" . avy-goto-line)
|
|
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
#+end_src
|
|
|
|
|
|
|
|
|
|
** iedit
|
|
|
|
|