This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// List of basic Console Virtual Terminal Sequences | |
// For more info: https://docs.microsoft.com/en-us/windows/console/console-virtual-terminal-sequences | |
#pragma once | |
// ---------------------------------------------------------------------------- | |
// Operating System Command (OSC) sequences | |
// ---------------------------------------------------------------------------- | |
#define WIN_TITLE(x) "\x1B]2;" x "\x07" // Set window title to string x | |
// ---------------------------------------------------------------------------- |