spacemacs

Spacemacs docs: http://develop.spacemacs.org/doc/DOCUMENTATION.html http://develop.spacemacs.org/layers/+lang/clojure/README.html https://practicalli.github.io/spacemacs/
zane 2020-10-12T06:04:26.067900Z

Yeah, teleport was my favorite.

zane 2020-10-12T06:04:35.068100Z

I added “change” in my personal config:

(use-package avy
    :after evil
    :config
    (defun avy-action-change (pt)
      "Kill sexp starting on PT and enter insert-mode."
      (avy-action-kill-move pt)
      (evil-insert 1))

    (setq avy-dispatch-alist
          '((?c . avy-action-change)
            (?x . avy-action-kill-move)
            (?X . avy-action-kill-stay)
            (?t . avy-action-teleport)
            (?m . avy-action-mark)
            (?n . avy-action-copy)
            (?y . avy-action-yank)
            (?i . avy-action-ispell))))

zane 2020-10-12T06:04:41.068300Z

Glad you found it useful!