This file is indexed.

/usr/share/el-get/recipes/pylookup.rcp is in el-get 3.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
(:name pylookup
       :description "Emacs mode for searching python documents with convenience"
       :type git
       :url "https://github.com/tsgates/pylookup.git"
       :post-init (lambda ()
            (setq pylookup-dir (expand-file-name "pylookup" el-get-dir)
              pylookup-program (expand-file-name "pylookup.py" pylookup-dir)
              pylookup-db-file (expand-file-name "pylookup.db" pylookup-dir))
            (autoload 'pylookup-lookup "pylookup" "Lookup SEARCH-TERM in the Python HTML indexes." t)
            (autoload 'pylookup-update "pylookup" "Run pylookup-update and create the database at `pylookup-db-file'." t)))