Questions tagged [escape-codes]
For questions regarding the use of Escape Code sequences to control video terminals.
7 questions
8
votes
2
answers
1k
views
Why do we use \c (escape c) to end the output of the shell echo command?
I'm wondering how was the letter c chosen for the character to use to stop printing in the shell echo command. I think it may be because it means cancel, but compared to the usual C/C++ escape ...
15
votes
5
answers
4k
views
DOS: How do I type an ANSI escape sequence?
I'm currently trying to experiment with ANSI escape sequences on various terminals/terminal emulators, so I'd like to know if there's an expedient way of typing these sequences on a DOS command prompt,...
12
votes
2
answers
994
views
How widely used were C1 control codes?
As ASCII is a 7-bit code set, and ISO 646 cannot satisfy needs of many languages, variable-length ISO 2022/EUC was developed, which introduced C1 control codes.
However, C1 have hardly left any ...
16
votes
3
answers
2k
views
Different escape codes for the same keyboard keys -- where did they come from?
While debugging uart on some microcontroller board, I've made a simple firmware that simply responds on every byte received dumping that byte in HEX like "0x**". Then, using different terminal ...
12
votes
3
answers
2k
views
What was the largest resolution supported by terminal escape codes?
Terminal escape codes can be used for various functions such as positioning the cursor or querying the size of the screen. What was the largest resolution (in columns and rows of characters) ...
6
votes
4
answers
1k
views
Can escape sequences be entered directly from keyboard to terminal for VT100 and similar?
TL;DR:
In video terminals, like the VT100, can control characters and escape sequences only be sent by an application from the host computer to the terminal? Or can they also be sent directly by the ...
11
votes
6
answers
1k
views
VT52 emulation for MS-DOS?
I'm trying to run an old MS-DOS program that was written to use VT52 escape codes.
Some Microsoft knowledge base items (such as Q101875) refer to a 'third-party console driver' called VT52.SYS. I'm ...