This file is indexed.

/usr/share/vim/addons/doc/lastplace.txt is in vim-lastplace 3.1.1-2.

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
*vim-lastplace*  Intelligently reopen files where you left off.

Author:  Gregory L. Dietsche <https://www.gregd.org/>
License: MIT
Version: 3.1.1

INTRODUCTION                                    *vim-lastplace-introduction*

Intelligently reopen files where you left off.  By default git,
svn, and mercurial commit messages are ignored because you
probably want to type a new message and not re-edit the previous
one.

You can configure what file types to ignore by setting
g:lastplace_ignore in your vimrc. This is a comma separated list.
By default it is set to:

        let g:lastplace_ignore = "gitcommit,gitrebase,svn,hgcommit"

You can configure buffer types to ignore by setting
g:lastplace_ignore_buftype in your vimrc. This is a comma separated list.
By default it is set to:

        let g:lastplace_ignore_buftype = "quickfix,nofile,help"

Folds are automatically opened when jumping to the last edit position. If you
do not like this behavior you can disable it by putting this in your vimrc:

        let g:lastplace_open_folds = 0

ABOUT                                           *vim-lastplace-about*

Get the latest version and/or report a bug on GitHub:
        https://github.com/farmergreg/vim-lastplace

 vim:tw=78:et:ft=help:norl: