#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

