Files
evil-leap/README.org
2025-10-27 23:57:09 -06:00

961 B

evil-leap

Evil-leap is a port of leap.nvim, a fantastic Neovim package that allows you to search for and quickly jump to two-character strings.

Installation

With use-package + Straight:

  (use-package evil-leap
   :straight (:type git
              :host gitlab
              :repo "msyds/evil-leap")
   :config
   ;; Optionally rebind `evil-leap-forward' and `evil-leap-backward' from their
   ;; defaults ('s'/'S').
   ;;
   ;;   (evil-define-key* '(motion normal) evil-leap-mode-map
   ;;      "s" #'evil-leap-forward
   ;;      "S" #'evil-leap-backward)
   )

To-do

  • Fix exception thrown when no matches.
  • Fix case-sensitive searching.
  • SPC SPC to match newline.
  • Remove Evil dependency.
  • Case-fold?