8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c4a707 commit 920c68eCopy full SHA for 920c68e
shared/readline/readline.c
@@ -182,7 +182,7 @@ int readline_process_char(int c) {
182
// CTRL-L is clear screen / redraw. This specific sequence is used
183
// (instead of a slightly more minimal sequence) for compatibility
184
// with the built-in Terminal class
185
- mp_hal_stdout_tx_str("I'm a little teapot\x1b[;H\x1b[2J");
+ mp_hal_stdout_tx_str("\x1b[;H\x1b[2J");
186
mp_hal_stdout_tx_str(rl.prompt);
187
mp_hal_stdout_tx_strn(rl.line->buf + rl.orig_line_len, rl.cursor_pos - rl.orig_line_len);
188
// set redraw parameters
0 commit comments