This file is indexed.

/usr/share/doc/elpa-avy-menu/README.md is in elpa-avy-menu 0.1.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
41
42
43
44
45
46
47
# Avy Menu

The library provides [`avy`](https://github.com/abo-abo/avy)-powered popup
menu that allows to quickly choose from available options. This is used in
(at least) the following packages:

* [`ace-popup-menu`](https://github.com/mrkkrp/ace-popup-menu)
* [`char-menu`](https://github.com/mrkkrp/char-menu)
* [`hasky-extensions`](https://github.com/hasky-mode/hasky-extensions)

You can use it directly for your custom needs as well.

## Installation

Put it on your `load-path` and then add the following at the top of file
where you would like to use the menu:

```emacs-lisp
(require 'avy-menu)
```

Don't forget to include it in your list of dependencies if you are writing
an Emacs Lisp package:

```emacs-lisp
;; Package-Requires: ((emacs "24.5") (avy-menu "0.1"))
```

To install the package via MELPA, type <kbd>M-x package-install avy-menu
RET</kbd>.

## API

The single public function `avy-menu` provides all the functionality. See
its description in source code or with built-in help system: <kbd>C-h f
avy-menu RET</kbd>.

## Customization

Use <kbd>M-x customize-group avy-menu RET</kbd> to change appearance of the
menu.

## License

Copyright © 2016–2017 Mark Karpov

Distributed under GNU GPL, version 3.