mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 17:46:14 +01:00
640de3fb86
This reverts commit b673fb12c1
.
19 lines
481 B
Org Mode
19 lines
481 B
Org Mode
:PROPERTIES:
|
|
:ID: e93571d6-ae50-4aca-8b2f-6ada70655be3
|
|
:END:
|
|
#+title: Avy
|
|
#+filetags: emacs-load
|
|
|
|
# SPDX-FileCopyrightText: 2022 Richard Brežák <richard@brezak.sk>
|
|
#
|
|
# SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
#+BEGIN_QUOTE
|
|
~avy~ is a GNU Emacs package for jumping to visible text using a char-based decision tree. See also ~ace-jump-mode~ and ~vim-easymotion~ - ~avy~ uses the same idea.
|
|
#+END_QUOTE
|
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
(use-package avy
|
|
:straight t)
|
|
#+END_SRC
|