From 6558464cb073cf7f12d21407413d1f6c52bb86d1 Mon Sep 17 00:00:00 2001 From: The Magician Date: Sun, 5 Nov 2023 19:04:00 +0000 Subject: [PATCH] Make control code format explainer italic --- thebookofcolors | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thebookofcolors b/thebookofcolors index 2e975d7..7bbfc97 100755 --- a/thebookofcolors +++ b/thebookofcolors @@ -69,7 +69,7 @@ section_anatomy() { printf 'Overall, a control sequence is formatted like so:\n' newline - printf '0x1B + [ + + \n' + printf '\e[3m0x1B + [ + + \e[0m\n' newline printf 'The CSI sequence we''ve gone over already. The easiest way to think about this is that the letter is the name of a function, and the semicolon-delimited numbers are the arguments to said function.\n' printf 'By this model of thinking about escape sequences like function calls means you would read "\\e[0;1;34m" as m(0, 1, 34), and "\\e[A" as A().\n'