This file is indexed.

/usr/share/doc/sludge/ExampleProjects/VerbCoin/iface/keyboard.slu is in sludge-doc 2.2.1-1build2.

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
sub keys (k) {
	if (k == " ") showBoxes ();
	if (k == "f") showFloor ();
	if (k == "ESCAPE") quitGame ();
}