This file is indexed.

/usr/share/doc/libdist-zilla-perl/todo/vfs-for-files.mkdn is in libdist-zilla-perl 6.010-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
# VIRTUAL FILESYSTEM TO REPLACE "FILES" ARRAY

Right now, files are simple objects stored in an array.  This is nice and
simple, but also a bit of a mess.  It allows duplicate filenames forces us to
use regex to find files in a given directory, and so on.  Instead, we should
use Path::Resolver (or something) to build a simple virtual filesystem.

Then we could have filename changes detect conflicts immediately, we could have
$file->replace_with( $other_file ), and other nice improvements.