Skip to content

Commit b64ca1c

Browse files
authoredMar 18, 2023
Merge pull request ggml-org#40 from rupeshs/windows-console-ansi-color-fix
Windows console ANSI color issue fixed
2 parents 4a524c5 + a83e2e7 commit b64ca1c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
 

‎chat.cpp

+6
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
#include <unistd.h>
1717
#elif defined (_WIN32)
1818
#include <signal.h>
19+
#include <Windows.h>
1920
#endif
2021

2122
#define ANSI_COLOR_RED "\x1b[31m"
@@ -886,6 +887,11 @@ int main(int argc, char ** argv) {
886887
sigaction(SIGINT, &sigint_action, NULL);
887888
#elif defined (_WIN32)
888889
signal(SIGINT, sigint_handler);
890+
//Windows console ANSI color fix
891+
HANDLE hConsole = GetStdHandle(STD_OUTPUT_HANDLE);
892+
DWORD mode;
893+
GetConsoleMode(hConsole, &mode);
894+
SetConsoleMode(hConsole, mode | ENABLE_VIRTUAL_TERMINAL_PROCESSING);
889895
#endif
890896

891897
fprintf(stderr, "%s: interactive mode on.\n", __func__);

0 commit comments

Comments
 (0)