This file is indexed.

/usr/share/vile/vileperl.rc is in vile-common 9.8g-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
37
38
39
40
41
; $Id: vileperl.rc,v 1.7 2000/11/15 11:19:11 tom Exp $
;
; This is a sample script which shows how to initialize the perl scripts
; distributed with vile.

~if &sin $cfgopts "perl"

~if &not &seq $os "win32"

~if &seq $progname "xvile"

; Add vile edit server
~if &not &rd "$HOME/.vilesock"
	perl "use Vileserv"	; starts automatically, stops on exit
~endif

; Add ':startserv' and ':stopserv' commands to manually control server
perl "Vile::register 'startserv', \\&Vileserv::start, 'start edit server'"
perl "Vile::register 'stopserv',  \\&Vileserv::stop,  'stop edit server'"

~endif

; Add spell checker
perl "use spell"

; Add screen lock
perl "use lock"

; Add asynchronous capture
perl "use capture"

~endif

; Add directory browser
perl "use directory"

; Add recursive grep
perl "use hgrep"
perl "use dirlist"

~endif