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
|
#command
# BASIC NAVIGATION
j forw-line # Down one line
k back-line # Up one line
d forw-scroll # Down half page
u back-scroll # Up half page
f forw-screen # Down one page
b back-screen # Up one page
g goto-line 1 # Top of file
G end # Bottom of file
< goto-line 1 # Alternate go to top
> end # Alternate go to bottom
n repeat-search # Next match
N reverse-search # Previous match
/ forw-search # Forward search
? back-search # Backward search
q quit # Quit safely
r repaint # Repaint screen
F forw-screen +F # Follow mode
m set-mark # Set mark
' goto-mark # Jump to mark
` goto-mark # Jump to mark (backtick)
p percent # Jump to percent of file
% percent # Same
# DISABLED COMMANDS — SECURITY or STABILITY RISK
! # Disable shell escape
| # Disable pipe to shell
v # Disable open in editor
e # Disable edit file
: # Disable command prompt
. # Disable repeat previous command
= # Disable status
s # Disable status
h # Disable help screen
t # Disable next tag
Q # Disable alternate quit
|