This file is indexed.

/usr/share/bug/vim/script is in vim 2:7.4.052-1ubuntu3.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

1
2
3
4
5
6
7
8
#!/bin/sh

printf "\n--- real paths of main Vim binaries ---\n" >&3
for f in vi vim gvim; do
    if [ -L "/usr/bin/$f" ]; then
        printf "/usr/bin/$f is $(readlink -f /usr/bin/$f)\n" >&3
    fi
done