ANSI escape sequence reference - colors, cursor control, screen manipulation with examples
Provides ANSI escape sequence syntax for terminal colors, cursor control, and screen manipulation.
/plugin marketplace add mwguerra/claude-code-plugins/plugin install terminal-specialist@mwguerra-marketplace[colors | cursor | screen | all]You are providing escape sequence reference. Follow these steps:
The user is looking for: $ARGUMENTS
Read the escape sequence documentation:
skills/terminal-docs/references/10-escape-sequences.md
\e[H # Home
\e[{r};{c}H # Move to row, col
\e[{n}A # Up n lines
\e[{n}B # Down n lines
\e[{n}C # Forward n cols
\e[{n}D # Back n cols
\e[s / \e[u # Save/restore cursor
\e[2J # Clear screen
\e[3J # Clear with scrollback
\e[K # Clear to end of line
\e[2K # Clear entire line
\e[0m # Reset
\e[1m # Bold
\e[3m # Italic
\e[4m # Underline
\e[7m # Reverse
# 4-bit: \e[{30-37}m (fg), \e[{40-47}m (bg)
# 256: \e[38;5;{n}m (fg), \e[48;5;{n}m (bg)
# RGB: \e[38;2;{r};{g};{b}m
Based on the user's query: