The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
23 views

chat.facebook.com sending presence unavailable? + learn how to send composing

I've noticed that when I send a presence of unavailable to chat.facebook.com using node-xmpp it is different than the ones I receive (I am logging with colours for readability with ANSI escape code ...
0
votes
0answers
17 views

Resetting unset ANSI/VT100 Terminal Control Escape Sequences

Does it any harm, if I reset a Terminal Control Escape Sequence, which was not set before? Example: #!/usr/bin/env perl use warnings; use strict; use constant { SET_ANY_EVENT_MOUSE_1003 ...
0
votes
1answer
51 views

Reading the Device Status Report ANSI escape sequence reply

I'm trying to retrieve the coordinates of cursor in a VT100 terminal using the following code: void getCursor(int* x, int* y) { printf("\033[6n"); scanf("\033[%d;%dR", x, y); } I'm using the ...
1
vote
1answer
43 views

Neglect all escape characters and code JAVA

Situation: I've got a string created like so \033[32m\033[44mP"+characterID+"\033[0m" when the string is printed to console it prints out P + characterID in green like it should Problem: I ...
0
votes
1answer
64 views

How to colorize Rails logs in Multitail?

Output of tail logs/development.log in XFCE Terminal: multitail log/development.log Rails adds escape codes to log files automatically. See development.log file: ^[[1m^[[36m (84.1ms)^[[0m ...
1
vote
2answers
65 views

How can I suppress readline to print something and then restore it?

I am trying to write a console chat client using only readline and ANSI escape codes. My goal is to just let the terminal handle the scrollback and scrolling of the chat history while always ...
0
votes
2answers
211 views

c# stringbuilder tostring double quote issue

I have an issue when converting a string from stringbuilder to string. The issue is similar to this issue but slightly different: This is my code simplified: StringBuilder sb = new StringBuilder(); ...
-1
votes
1answer
216 views

How can I remove the ANSI escape sequences from a string in python

This is my string: 'ls\r\n\x1b[00m\x1b[01;31mexamplefile.zip\x1b[00m\r\n\x1b[01;31m' I was using code to retrieve the output from a SSH command and I want my string to only contain ...
5
votes
1answer
133 views

Where xterm Escape sequences like “Esc | 112 m” are defined?

While implementing xterm-256-colors in ConEmu I have discovered some unknown for me Escape sequences (used by Vim) like Esc | 7 m Esc | 15 m Esc | 112 m From Vim sources I realize that this codes ...
2
votes
1answer
119 views

ANSI Coloring in Compilation Mode

Have anyone added support for ansi-color in compilation-mode Emacs? If so what property/attribute does the color-writing program have to check for in order to make sure its active terminal supports ...
3
votes
3answers
673 views

Python: How can I make the ANSI escape codes to work also in Windows?

If I run this in python under linux it works: start = "\033[1;31m" end = "\033[0;0m" print "File is: " + start + "<placeholder>" + end But if I run it in Windows it doesn't work, how can I ...
0
votes
2answers
200 views

Determine escape sequence independent from terminal type

My app reading escape sequences from terminal in raw mode. And when it's running on xterm I got F2 like "\eOQ". But when it's running in linux tty terminal (Switching by Ctrl-Alt-F1) I got "\e[[[B". ...
3
votes
1answer
199 views

ANSI Escape Sequences Disappear When Running a Ruby Script to Output to Geektool

I am trying to use the OS X app GeekTool to print colorized text output onto my Desktop. GeekTool allows you to place little windows called "geeklets" onto the Desktop. One kind of Geeklet displays ...
0
votes
4answers
366 views

How can I delete characters in stdout by programming?

I want to emulate backspace in programming and implemented as below. // del.cpp #include <iostream> using namespace std; int main() { cout << "123456"; cout << "\b\b\b" /* ...
0
votes
2answers
584 views

How can I see the colored log using tail or less?

Reading a Rails log with vim, we can see a colored log. But when we use tail -f or less to watch the log, it isn't colorized anymore. Is there any way to see the colored log with tail or less or ...
2
votes
2answers
1k views

python -> replace escape character to convert hexa string from 0x to \x

i'm trying to print ascii or extended ascii character. using this code : print '\xff'.decode('latin-1') it will print ascii #255, but now i want to input using decimal number like this : num=255 ...
0
votes
1answer
163 views

Handle escape sequences with ncurses? Does printf handle escape sequences?

My program read some text data from network, something like: Hello \033[1;34mworld\033[0m and bla bla bla!!!\n". When program output this string using prinf, the word "world" is blue. But when I'm ...
2
votes
0answers
259 views

ANSI Escape Sequences Fail in Cygwin

I am trying to create a 'drop down menu' for a CLI program using ANSI escape sequences in Python 2.7.2. I use ANSI escape sequences to change the 'options' to red and display them below the input ...
0
votes
2answers
563 views

XSLT Escape Character not working

I am trying to use escape charaters in my text output, as i would like too surround the output in emailData tags. I am using <xsl:text>&#60;emailData&#62;</xsl:text> In the ...
0
votes
2answers
271 views

Terminal Control Escape Sequence: how can I catch row and column with “\e[6n”?

How could I catch the row and the column in variables instead of printing out (here ^[[12;1R)? #!/usr/bin/env perl use warnings; use 5.012; print "\n" x 10; say "\e[6n";
1
vote
4answers
2k views

bash - color escapes codes

I have a script that uses escape codes to highlight text matches in its output. All is good except when the output is piped to less, which prints the escape codes e.g. $ echo -e "\033[31m -- Hello ...
1
vote
4answers
1k views

How to match “escape” non-printable character in a regex?

I've found a howto, http://answers.oreilly.com/topic/214-how-to-match-nonprintable-characters-with-a-regular-expression/ , but non of the codes, \e, \x1b, \x1B, work for me in Java. EDIT I am ...
4
votes
1answer
815 views

How to detect if the console does support ANSI escape codes in Python?

In order to detect if console, correctly sys.stderr or sys.stdout, I was doing the following test: if hasattr(sys.stderr, "isatty") and sys.stderr.isatty(): if platform.system()=='Windows': ...
5
votes
2answers
320 views

How to print a string literally in Python

this is probably really simple but I can't find it. I need to print what a string in Python contains. I'm collecting data from a serial port and I need to know if it is sending CR or CRLF + other ...
1
vote
3answers
1k views

How do i print escape characters as characters?

I'm trying to print escape characters as characters or strings using this code: while((c = fgetc(fp))!= EOF) { if(c == '\0') { printf(" \0"); } else if(c == '\a') { ...
4
votes
1answer
839 views

Java framework for reading / writing ANSI escape-sequenced character streams

Reading ANSI escape sequences is nitty gritty and very easy to get wrong. I am after a library that includes an abstraction for reading escaped sequences preferrably as instances of some nice type. It ...
1
vote
1answer
255 views

Understanding printing bytes in the Python interactive interpreter

I've stumbled upon what I can only describe as a bug in the interactive interpreter for Python. While the bug is rather inconsequential I felt that it was an interesting problem, and a good chance to ...
0
votes
2answers
304 views

Help scrolling and number of lines in a shell

I'm programming in C and I need to know the number of lines of stdin. After a certain number of lines, I also need to scroll up one line...I used an ANSI escape code (033[1S), but I lose the content ...
1
vote
5answers
3k views

python regex escape characters

We have: >>> str 'exit\r\ndrwxr-xr-x 2 root root 0 Jan 1 2000 \x1b[1;34mbin\x1b[0m\r\ndrwxr-xr-x 3 root root 0 Jan 1 2000 ...
5
votes
2answers
2k views

Converting ANSI escape sequences to HTML using PHP

This is a similar question to this one. I would like to convert ANSI escape sequences, especially for color, into HTML. However, I would like to accomplish this using PHP. Are there any libraries ...
30
votes
2answers
6k views

A library to convert ANSI escapes (terminal formatting/color codes) to HTML

I'm looking for a code library that converts ANSI escape sequences into HTML color, via plain tags or CSS. For example, something that would convert this: ESC[00mESC[01;34mbinESC[00m ...