The termcap tag has no wiki summary.
6
votes
3answers
682 views
How do I determine if a terminal is color-capable?
I would like to change a program to automatically detect whether a terminal is color-capable or not, so when I run said program from within a non-color capable terminal (say M-x shell in (X)Emacs), ...
4
votes
2answers
371 views
terminal: where am I?
Is there a variable or a function, which can tell me the actual position of the cursor?
#!/usr/bin/env perl
use warnings;
use 5.012;
use Term::ReadKey;
use Term::Cap;
use POSIX;
my( $col, $row ) = ...
3
votes
1answer
419 views
Testing for color support in Linux shell scripts
This is the second time I've wanted to do this and again my google-fu has failed me.
When in the course of running a shell script (in my case a bash script) is there a program/script that tests ...
2
votes
1answer
225 views
Get current terminal color pair in Perl
I'm trying to learn about color text in a terminal window. (In case it matters I'm using Terminal.app on OS X.) I'd like to get the terminal's current foreground and background color pair. It looks ...
1
vote
1answer
79 views
Term::Cap: “key up” doesn't work
#!/usr/bin/env perl
use warnings;
use 5.014;
use Term::Cap;
use POSIX;
my $termios = new POSIX::Termios;
$termios->getattr;
my $ospeed = $termios->getospeed;
my $terminal = Tgetent Term::Cap { ...
1
vote
1answer
172 views
What is the termcap code for the caret (aka circumflex) (^) key?
I want to remap the ^ key to <Esc> in VIM since it is easier to reach on a german keyboard. As far as I understand there is no keycode for the ^ key and I have to use the termcap notation:
...
1
vote
1answer
196 views
Can I determine if the terminal interprets the C1 control codes?
ISO/IEC 2022 defines the C0 and C1 control codes. The C0 set are the familiar codes between 0x00 and 0x1f in ASCII, ISO-8859-1 and UTF-8 (eg. ESC, CR, LF).
Some VT100 terminal emulators (eg. ...
0
votes
1answer
157 views
Spliting a terminal like GNU screen, programatically
According to this (@ Programs using ncurses):
http://en.wikipedia.org/wiki/Ncurses
and this:
http://aperiodic.net/screen/faq#when_i_split_the_display_and_then_detach_screen_forgets_the_split
...
0
votes
1answer
35 views
Questions about display with Perform screens
Questions 1 and 2 are specific to INFORMIX-SQL 4.10.DD6 (DOS) Perform screens.
Question 3 applies to any version of INFORMIX-SQL in any environment.
I would like to be able to display more than 80 ...
0
votes
1answer
224 views
TUI using slang with pure ascii (7 bit) characters via termcap
I am using newt/snack (a TUI graphical Widgit library for Python based on slang) to have some interactive scripts. However for some target terminals the output of those screens are not very nice. I ...
0
votes
1answer
214 views
Unable to turn off automatic margins by termcap in Mac
I need to turn automatic margins off according the following statement from Screen's manual in my Mac
If your terminal is a "true"
auto-margin terminal (it doesn't allow
the last position on ...