1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-22 22:42:48 +03:00

docs: document OSC 11-13 for changing default colors

refs: https://github.com/wez/wezterm/issues/1680
This commit is contained in:
Wez Furlong 2022-03-03 07:22:30 -07:00
parent 22cea37959
commit 5ffd50acc6

View File

@ -345,6 +345,9 @@ The table below is keyed by the OSC code.
|7 |Set Current Working Directory | [See Shell Integration](shell-integration.html#osc-7-escape-sequence-to-set-the-working-directory) ||
|8 |Set Hyperlink | [See Explicit Hyperlinks](hyperlinks.html#explicit-hyperlinks) | |
|9 |iTerm2 Show System Notification | Show a "toast" notification | `printf "\e]9;%s\e\\" "hello there"` |
|10 |Set Default Text Foreground Color| | `\x1b]10;#ff0000\x1b\\` |
|11 |Set Default Text Background Color| | `\x1b]11;#0000ff\x1b\\` |
|12 |Set Text Cursor Color| | `\x1b]12;#00ff00\x1b\\` |
|52 |Manipulate clipboard | Requests to query the clipboard are ignored. Allows setting or clearing the clipboard | |
|104|ResetColors | Reset color palette entries to their default values | |
|133|FinalTerm semantic escapes| Informs the terminal about Input, Output and Prompt regions on the display | [See Shell Integration](shell-integration.html) |