This file is indexed.

/usr/share/vim/addons/ftdetect/cocci.vim is in coccinelle 1.0.4.deb-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
" Vim filetype detection file
" Language:     Cocci (SmPL)
" Author:       Alexander Færøy <ahf@0x90.dk>
" Copyright:    Copyright (c) 2009-2010 Alexander Færøy
" License:      You may redistribute this under the same terms as Vim itself.

if &compatible || v:version < 603
    finish
endif

au BufNewFile,BufRead *.cocci set filetype=cocci

" vim: set et ts=4 :