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 79dda6d commit a776a52Copy full SHA for a776a52
include/indicators/cursor_control.hpp
@@ -28,7 +28,7 @@ static inline void show_console_cursor(bool const show) {
28
#else
29
30
static inline void show_console_cursor(bool const show) {
31
- std::fputs(show ? "\e[?25h" : "\e[?25l", stdout);
+ std::fputs(show ? "\033[?25h" : "\033[?25l", stdout);
32
}
33
34
#endif
single_include/indicators/indicators.hpp
@@ -1570,7 +1570,7 @@ static inline void show_console_cursor(bool const show) {
1570
1571
1572
1573
1574
1575
1576
0 commit comments