This file is indexed.

/usr/share/doc/w3m/examples/menu.submenu is in w3m 0.5.3-8.

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
42
43
44
# A sample of ~/.w3m/menu  (submenu type)
#
# menu MENU_ID
#  func  LABEL FUNCTION KEYS
#  popup LABEL MENU_ID  KEYS
#  nop   LABEL
# end
#
# MENU_ID
#  Main:   Main Menu
#  Select: Buffer selection menu

menu Main
 func	"Back         (b)"	BACK		"b"
 popup	"Buffer ops  >(f)"	Buffer		"fF"
 popup	"Link ops    >(l)"	Link		"lL"
 nop	"----------------"
 popup	"Bookmarks   >(B)"	Bookmark	"B"
 func	"Help         (h)"	HELP		"hH"
 func	"Options      (o)"	OPTIONS		"oO"
 nop	"----------------"
 func	"Quit         (q)"	QUIT		"qQ"
end

menu Buffer
 popup	"Buffer select(s)"	Select		"s"
 func	"View source  (v)"	VIEW		"vV"
 func	"Edit source  (e)"	EDIT		"eE"
 func	"Save source  (S)"	SAVE		"S"
 func	"Reload       (r)"	RELOAD		"rR"
end

menu Link
 func	"Go link      (a)"	GOTO_LINK	"a"
 func	"Save link    (A)"	SAVE_LINK	"A"
 func	"View image   (i)"	VIEW_IMAGE	"i"
 func	"Save image   (I)"	SAVE_IMAGE	"I"
 func	"View frame   (f)"	FRAME		"fF"
end

menu Bookmark
 func   "Read bookmark       (b)"	BOOKMARK	"bB"
 func   "Add page to bookmark(a)"	ADD_BOOKMARK	"aA"
end