This file is indexed.

/usr/lib/jove/jove.rc.xterm is in jove 4.16.0.73-4.

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
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
# The following bindings should work with most keyboards when used
# with the 'xterm' terminal emulator.  There are two sets of bindings of
# function keys within 'xterm' that are commonly used on Suns, one emulating
# the customary Sun bindings and the other being more vt220-like.  The
# following binding will work with either of them.  Note: in the preceding,
# "binding" means the characters sent by xterm to the program in response
# to keystrokes.
#
# We try to accomodate the mutations of xterm in XFree86 and its successors.
# F1-F3, Delete, Home, End, and the 5-key in the keyapad generate novel sequences.

# Xterm Mouse Bindings
#
# If its program enables the mode, xterm will send the client character
# sequences signifying certain mouse events.  JOVE will enable this mode
# while it is running if the xt-mouse variable is on.

set xt-mouse on

# JOVE decodes the resulting character sequences using its normal
# key binding techiques.  These bindings invoke certain commands designed
# to process mouse events.  Here we have two set of bindings: one
# makes mouse actions behave analogously to those in xterm; the other
# is more like OpenLook.  One should be suppressed via commenting.
#
# Bindings to give other "looks and feels" are possible, except for
# operations marked 'button 1 ONLY' below.  Those operations involving
# use of CTRL require the special translation table contained in the
# file 'XTermresource'.

# Xterm "Look and Feel" Bindings:
#
# button 1:
#	down with no modifiers:
#		xt-mouse-point [set point to mouse location]
#	down with CTRL held:
#		xt-mouse-mark [set point and mark to mouse location]
# button 2:
#	down with no modifiers:
#		xt-mouse-point-yank [yank at mouse location]
#		[weaker but more xterm-like binding: xt-mouse-yank for yank at point]
#	down with CTRL held:
#		xt-mouse-cut-point-yank [delete region and yank at mouse location]
# button 3:
#	down with no modifiers:
#		xt-mouse-extend [extend copied region and re-copy]
#	down with CTRL held:
#		xt-mouse-null
# button up:
#	up after drag: [button 1 ONLY]
#		xt-mouse-mark-drag-point-copy [set region and copy]
#	other button up:
#		xt-mouse-null

# button 1 down [note that the next line has a SPace at the end]
bind-to-key xt-mouse-point ^[[M 
bind-to-key xt-mouse-mark ^[[M0

# button 2 down
# less powerful but more xterm-like: bind-to-key xt-mouse-yank ^[[M!
bind-to-key xt-mouse-point-yank ^[[M!
bind-to-key xt-mouse-cut-point-yank ^[[M1

# button 3 down
bind-to-key xt-mouse-extend ^[[M"
bind-to-key xt-mouse-null ^[[M2

# button 1 up after drag and/or multiclick
bind-to-key xt-mouse-mark-drag-point-copy ^[[T
bind-to-key xt-mouse-mark-drag-point-copy ^[[t

# other button releases
bind-to-key xt-mouse-null ^[[M#
bind-to-key xt-mouse-null ^[[M3

# End of xterm "look and feel" bindings.


## OpenLook "Look and Feel" Bindings:
##
## The differences are in buttons 2 and 3.
##
## button 1:
##	down with no modifiers:
##		xt-mouse-point [set point to mouse location]
##	down with CTRL held:
##		xt-mouse-mark [set point and mark to mouse location]
## button 2:
##	down with no modifiers:
##		xt-mouse-extend [extend copied region and re-copy]
##	down with CTRL held:
##		xt-mouse-point-yank [yank at mouse location]
## button 3:
##	down with no modifiers:
##		xt-mouse-null
##	down with CTRL held:
##		xt-mouse-cut-point-yank [delete region and yank at mouse location]
## button up:
##	up after drag: [button 1 ONLY]
##		xt-mouse-mark-drag-point-copy [set region and copy]
##	other button up:
##		xt-mouse-null
#
## button 1 down [note that the next line has a SPace at the end]
#bind-to-key xt-mouse-point ^[[M 
#bind-to-key xt-mouse-mark ^[[M0
#
## button 2 down
#bind-to-key xt-mouse-extend ^[[M!
#bind-to-key xt-mouse-point-yank ^[[M1
#
## button 3 down
#bind-to-key xt-mouse-null ^[[M"
#bind-to-key xt-mouse-cut-point-yank ^[[M2
#
## button 1 up after drag and/or multiclick
#bind-to-key xt-mouse-mark-drag-point-copy ^[[T
#bind-to-key xt-mouse-mark-drag-point-copy ^[[t
#
## other button releases
#bind-to-key xt-mouse-null ^[[M#
#bind-to-key xt-mouse-null ^[[M3
#
## End of OpenLook "look and feel" bindings.


# define macro to display TERMinal-specific keychart file
define-macro keychart ^[xpushlibd^M^U^[xshell-command-with-typeout cat keychart.$TERM^M^[xpopd^M

# See the file jove.rc.sun(-cmd) for further details of this binding, and
# for reasons why it is as it is.

# Arrow keys
bind-to-key backward-character ^[[D
bind-to-key previous-line ^[[A
bind-to-key next-line ^[[B
bind-to-key forward-character ^[[C
bind-to-key backward-character ^[OD
bind-to-key previous-line ^[OA
bind-to-key next-line ^[OB
bind-to-key forward-character ^[OC

# L keys
bind-to-key over-write-mode ^[[192z
bind-to-key auto-fill-mode ^[[193z
bind-to-key set-mark ^[[194z
bind-to-key set-mark ^[[25~
bind-to-key exchange-point-and-mark ^[[195z
bind-to-key exchange-point-and-mark ^[[26~
bind-to-key copy-region ^[[197z
bind-to-key copy-region ^[[29~
bind-to-key yank ^[[199z
bind-to-key yank ^[[32~
bind-to-key search-forward ^[[200z
bind-to-key search-forward ^[[33~
bind-to-key search-forward ^[[1~
bind-to-key search-reverse ^[^[[200z
bind-to-key search-reverse ^[^[[33~
bind-to-key search-reverse ^[^[[1~
bind-to-key kill-region ^[[201z
bind-to-key kill-region ^[[34~

# Help key
bind-macro-to-key keychart ^[[202z

# F keys
bind-to-key execute-named-command ^[[224z
bind-to-key execute-named-command ^[[11~
bind-to-key execute-named-command ^[OP
bind-to-key split-current-window ^[[225z
bind-to-key split-current-window ^[[12~
bind-to-key split-current-window ^[OQ
bind-to-key next-window ^[[226z
bind-to-key next-window ^[[13~
bind-to-key next-window ^[OR
bind-to-key delete-other-window ^[[227z
bind-to-key delete-other-window ^[[14~
bind-to-key delete-other-window ^[OS
bind-to-key delete-current-window ^[[228z
bind-to-key delete-current-window ^[[15~
bind-to-key grow-window ^[[229z
bind-to-key grow-window ^[[17~
bind-to-key spell-buffer ^[[230z
bind-to-key spell-buffer ^[[18~
bind-to-key fill-comment ^[[231z
bind-to-key fill-comment ^[[19~
bind-to-key fill-paragraph ^[[232z
bind-to-key fill-paragraph ^[[20~
bind-to-key list-buffers ^[[233z
bind-to-key list-buffers ^[[21~
bind-to-key select-buffer ^[[234z
bind-to-key select-buffer ^[[23~
bind-to-key find-file ^[[235z
bind-to-key find-file ^[[24~

# On many keyboards the Backspace key is near Delete and, in the
# default Jove bindings these both do delete-previous-character. They would
# make a fine pair with one to delete forward and one to delete backward.
# For historical reasons, we leave them both as delete backward, but
# recommend that the adventurous (or IBM PC acculturated) enable these.
# bind-to-key delete-next-character ^?
# bind-to-key kill-next-word ^[^?
bind-to-key delete-previous-character ^[[3~

# R keys (these are all associated with cursor movement or scrolling)
bind-to-key unbound ^[[208z
bind-to-key beginning-of-line ^[[209z
bind-to-key beginning-of-file ^[OH
bind-to-key end-of-line ^[[210z
bind-to-key unbound ^[[211z
bind-to-key backward-word ^[[212z
bind-to-key forward-word ^[[213z
bind-to-key beginning-of-file ^[[214z
bind-to-key beginning-of-file ^[[41~
bind-to-key previous-page ^[[216z
bind-to-key previous-page ^[[5~
# This moves the cursor to the start of the next line.
define-macro newline-and-beginning ^A^N
bind-macro-to-key newline-and-beginning ^[[218z
bind-macro-to-key newline-and-beginning ^[OE
bind-to-key end-of-file ^[[220z
bind-to-key end-of-file ^[OF
bind-to-key next-page ^[[222z
bind-to-key next-page ^[[6~

# KP_0 (engraved "Ins")
bind-to-key newline-and-backup ^[[2~
# KP_Point (engraved "Del")
bind-macro-to-key kill-line ^[[249z
# KP_Enter
bind-to-key shell ^[[250z
# KP_Add
bind-to-key scroll-up ^[[253z
# KP_Subtract
bind-to-key scroll-down ^[[254z

set scroll-bar on