all repos — nixfiles @ fe5a7815a298734860c375452d747cc7644f492b

System and user configuration, managed by nix and home-manager

Emacs: Add smartscan-mode Go to next/previous instance of symbol at point with M-n and M-p. M-' to replace all instances of symbol

Alan Pearce
commit

fe5a7815a298734860c375452d747cc7644f492b

parent

475b71a0822d9b6b4dac646949851d3ee49e6887

1 file changed, 10 insertions(+), 0 deletions(-)

jump to
M tag-emacs/emacs.d/init.orgtag-emacs/emacs.d/init.org
@@ -2247,6 +2247,16 @@ (add-hook 'lisp-mode-common-hook #'turn-off-smartparens-mode)
(add-hook 'coffee-mode-hook #'turn-off-smartparens-mode))) #+END_SRC +** smart-scan + +Move between instances of a symbol + +#+BEGIN_SRC emacs-lisp + (use-package smartscan + :config (progn + (smartscan-mode 1))) +#+END_SRC + ** move-text Transposing lines, made easier.