This file is indexed.

/usr/share/vim/addons/plugin/jedi.vim is in vim-python-jedi 0.8.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
"jedi-vim - Omni Completion for python in vim
" Maintainer: David Halter <davidhalter88@gmail.com>
"
" This part of the software is just the vim interface. The really big deal is
" the Jedi Python library.


" jedi-vim doesn't work in compatible mode (vim script syntax problems)
if &compatible
    set nocompatible
endif

" jedi-vim really needs, otherwise jedi-vim cannot start.
filetype plugin on

" Pyimport command
command! -nargs=1 -complete=custom,jedi#py_import_completions Pyimport :call jedi#py_import(<q-args>)

" vim: set et ts=4: