1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
Source: avy
Section: lisp
Priority: optional
Maintainer: Debian Emacsen team <debian-emacsen@lists.debian.org>
Uploaders: Lev Lamberov <dogsleg@debian.org>
Build-Depends: debhelper-compat (= 13),
dh-elpa
Standards-Version: 4.5.1
Rules-Requires-Root: no
Testsuite: autopkgtest-pkg-elpa
Homepage: https://github.com/abo-abo/avy
Vcs-Browser: https://salsa.debian.org/emacsen-team/avy
Vcs-Git: https://salsa.debian.org/emacsen-team/avy.git
Package: elpa-avy
Architecture: all
Depends: ${elpa:Depends},
${misc:Depends}
Recommends: emacs (>= 46.0)
Enhances: emacs
Description: jump to things in Emacs tree-style
This package provides a generic completion method based on building
a balanced decision tree with each candidate being a leaf. To
traverse the tree from the root to a desired leaf, typically a
sequence of `read-key' can be used.
.
In order for `read-key' to make sense, the tree needs to be
visualized appropriately, with a character at each branch node. So
this completion method works only for things that you can see on
your screen, all at once:
.
* character positions
* word or subword start positions
* line beginning positions
* link positions
* window positions
.
If you're familiar with the popular `ace-jump-mode' package, this
package does all that and more, without the implementation
headache.
|