Compare commits
128 Commits
Author | SHA1 | Date | |
---|---|---|---|
e8f1308586 | |||
d65ebe9aed | |||
28f56c8842 | |||
23af75fc75 | |||
c7a945c408 | |||
5afb3862ba | |||
0392d165d0 | |||
98a1085d0e | |||
51466e019a | |||
c490a60b80 | |||
83dea7fd7b | |||
e5f6736ee0 | |||
a3549c2eec | |||
8342036f98 | |||
9d9e049eac | |||
177d888dff | |||
fa04911c91 | |||
1926305318 | |||
8f3e6a577d | |||
f8b4998b32 | |||
6530025bca | |||
d4a17316d3 | |||
20c4f12254 | |||
821a6e00a5 | |||
8de8ae3923 | |||
ec3268961d | |||
769d481807 | |||
b4dfa18124 | |||
e8f3513bf4 | |||
f210ea26c4 | |||
8306568bd0 | |||
844cd7ce17 | |||
8c5ba1cfb0 | |||
3949aa7c5d | |||
84ceefe089 | |||
b5d0a13c10 | |||
984c12d2a6 | |||
da78629cf5 | |||
f5356d0185 | |||
bcbaf5d9be | |||
f796533b1b | |||
955923b38b | |||
0015e198bf | |||
1fc4afd1e6 | |||
21bd4f4f9d | |||
50e6355e0d | |||
77569526c0 | |||
19d095717f | |||
5edeec1b20 | |||
738f555f66 | |||
58eaa998b3 | |||
c2fd2754eb | |||
27b28f1dc2 | |||
587b443592 | |||
93661042a2 | |||
18a05fdf43 | |||
5159d55c63 | |||
6fd887077e | |||
bb6dc33206 | |||
2323e962e6 | |||
c6fcb78b3a | |||
8b4cfcea73 | |||
a32c5f5726 | |||
ba36d1394b | |||
ede83bd08b | |||
2411308bd2 | |||
d03aa8d20b | |||
80d8051269 | |||
488977c8ef | |||
f4ebb3180f | |||
3544e354b2 | |||
cf890e5bf0 | |||
bdb850a16a | |||
e31829f659 | |||
5e917ab287 | |||
99fb365aa3 | |||
870f961c49 | |||
1629363f2d | |||
6b315558f8 | |||
5f91983541 | |||
9e3e8ce466 | |||
0e439e5624 | |||
74962bf566 | |||
6681af165b | |||
1ae2745fd1 | |||
a48f2be7f5 | |||
17fa1493ee | |||
a8a9e66a7d | |||
17290f493b | |||
43d74ef362 | |||
3764f38fc8 | |||
53105cf74f | |||
aa35bbd7a1 | |||
704d12442e | |||
02d2df5790 | |||
c4b79b055d | |||
7f1e02e4db | |||
84f6dbffa5 | |||
2d67f99d28 | |||
4a8574b439 | |||
8f11e1cd03 | |||
844c503c80 | |||
1b0b9759dc | |||
99d2d6007a | |||
fe31a3f634 | |||
6b7f63bac5 | |||
80b32af794 | |||
16ac85bf54 | |||
fe527aa508 | |||
3afdb4ff04 | |||
f9dc374ea0 | |||
fa19f241a3 | |||
df1810dd8f | |||
ed855ea432 | |||
68d97457ec | |||
49672dac7b | |||
f21e47f44a | |||
87abc7cd59 | |||
1388870331 | |||
6b56cbf9cc | |||
3269bf213d | |||
4ad2fc7f18 | |||
dc74c4f729 | |||
b8d6171cb0 | |||
ebb6e03201 | |||
f27b44b7c2 | |||
3cb80840db | |||
c46d929fe1 |
82
FAQ
82
FAQ
@ -37,23 +37,23 @@ Taken from the terminfo manpage:
|
|||||||
are pressed, this information can be given. Note that it is not
|
are pressed, this information can be given. Note that it is not
|
||||||
possible to handle terminals where the keypad only works in
|
possible to handle terminals where the keypad only works in
|
||||||
local (this applies, for example, to the unshifted HP 2621 keys).
|
local (this applies, for example, to the unshifted HP 2621 keys).
|
||||||
If the keypad can be set to transmit or not transmit, tive these
|
If the keypad can be set to transmit or not transmit, give these
|
||||||
codes as smkx and rmkx. Otherwise the keypad is assumed to
|
codes as smkx and rmkx. Otherwise the keypad is assumed to
|
||||||
always transmit.
|
always transmit.
|
||||||
|
|
||||||
In the st case smkx=E[?1hE= and rmkx=E[?1lE>, so it is mandatory that
|
In the st case smkx=E[?1hE= and rmkx=E[?1lE>, so it is mandatory that
|
||||||
applications which want to test against keypad keys, have to send these
|
applications which want to test against keypad keys send these
|
||||||
sequences.
|
sequences.
|
||||||
|
|
||||||
But buggy applications like bash and irssi for example don't do this. A fast
|
But buggy applications (like bash and irssi, for example) don't do this. A fast
|
||||||
solution for them is to use the following command:
|
solution for them is to use the following command:
|
||||||
|
|
||||||
$ printf "\033?1h\033=" >/dev/tty
|
$ printf '\033[?1h\033=' >/dev/tty
|
||||||
|
|
||||||
or
|
or
|
||||||
$ echo $(tput smkx) >/dev/tty
|
$ echo $(tput smkx) >/dev/tty
|
||||||
|
|
||||||
In the case of bash readline is used. Readline has a different note in its
|
In the case of bash, readline is used. Readline has a different note in its
|
||||||
manpage about this issue:
|
manpage about this issue:
|
||||||
|
|
||||||
enable-keypad (Off)
|
enable-keypad (Off)
|
||||||
@ -84,8 +84,74 @@ If you are using zsh, then read the zsh FAQ
|
|||||||
|
|
||||||
Putting these lines into your .zshrc will fix the problems.
|
Putting these lines into your .zshrc will fix the problems.
|
||||||
|
|
||||||
## How can use meta in 8bit mode?
|
## How can I use meta in 8bit mode?
|
||||||
|
|
||||||
St support meta in 8bit mode, but the default terminfo entry doesn't
|
St supports meta in 8bit mode, but the default terminfo entry doesn't
|
||||||
use this capability. If you want it, you have to use st-meta value
|
use this capability. If you want it, you have to use the 'st-meta' value
|
||||||
in TERM.
|
in TERM.
|
||||||
|
|
||||||
|
## I cannot compile st in OpenBSD
|
||||||
|
|
||||||
|
OpenBSD lacks of librt, despite it begin mandatory in POSIX
|
||||||
|
<http://pubs.opengroup.org/onlinepubs/9699919799/utilities/c99.html#tag_20_11_13>.
|
||||||
|
If you want to compile st for OpenBSD you have to remove -lrt from config.mk, and
|
||||||
|
st will compile without any loss of functionality, because all the functions are
|
||||||
|
included in libc on this platform.
|
||||||
|
|
||||||
|
## Backspace key does not work
|
||||||
|
|
||||||
|
This is an issue that was discussed in suckless mailing list
|
||||||
|
<http://lists.suckless.org/dev/1404/20697.html>:
|
||||||
|
|
||||||
|
Well, I am going to comment why I want to change the behaviour
|
||||||
|
of this key. When ASCII was defined in 1968, communication
|
||||||
|
with computers was done using punched cards, or hardcopy
|
||||||
|
terminals (basically a typewriter machine connected with the
|
||||||
|
computer using a serial port). ASCII defines DELETE as 7F,
|
||||||
|
because, in punched-card terms, it means all the holes of the
|
||||||
|
card punched; it is thus a kind of 'physical delete'. In the
|
||||||
|
same way, the BACKSPACE key was a non-destructive backspace,
|
||||||
|
as on a typewriter. So, if you wanted to delete a character,
|
||||||
|
you had to BACKSPACE and then DELETE. Another use of BACKSPACE
|
||||||
|
was to type accented characters, for example 'a BACKSPACE `'.
|
||||||
|
The VT100 had no BACKSPACE key; it was generated using the
|
||||||
|
CONTROL key as another control character (CONTROL key sets to
|
||||||
|
0 b7 b6 b5, so it converts H (code 0x48) into BACKSPACE (code
|
||||||
|
0x08)), but it had a DELETE key in a similar position where
|
||||||
|
the BACKSPACE key is located today on common PC keyboards.
|
||||||
|
All the terminal emulators emulated the difference between
|
||||||
|
these keys correctly: the backspace key generated a BACKSPACE
|
||||||
|
(^H) and delete key generated a DELETE (^?).
|
||||||
|
|
||||||
|
But a problem arose when Linus Torvalds wrote Linux. Unlike
|
||||||
|
earlier terminals, the Linux virtual terminal (the terminal
|
||||||
|
emulator integrated in the kernel) returned a DELETE when
|
||||||
|
backspace was pressed, due to the VT100 having a DELETE key in
|
||||||
|
the same position. This created a lot of problems (see [1]
|
||||||
|
and [2]). Since Linux has become the king, a lot of terminal
|
||||||
|
emulators today generate a DELETE when the backspace key is
|
||||||
|
pressed in order to avoid problems with Linux. The result is
|
||||||
|
that the only way of generating a BACKSPACE on these systems
|
||||||
|
is by using CONTROL + H. (I also think that emacs had an
|
||||||
|
important point here because the CONTROL + H prefix is used
|
||||||
|
in emacs in some commands (help commands).)
|
||||||
|
|
||||||
|
From point of view of the kernel, you can change the key
|
||||||
|
for deleting a previous character with stty erase. When you
|
||||||
|
connect a real terminal into a machine you describe the type
|
||||||
|
of terminal, so getty configures the correct value of stty
|
||||||
|
erase for this terminal. In the case of terminal emulators,
|
||||||
|
however, you don't have any getty that can set the correct
|
||||||
|
value of stty erase, so you always get the default value.
|
||||||
|
For this reason, it is necessary to add 'stty erase ^H' to your
|
||||||
|
profile if you have changed the value of the backspace key.
|
||||||
|
Of course, another solution is for st itself to modify the
|
||||||
|
value of stty erase. I usually have the inverse problem:
|
||||||
|
when I connect to non-Unix machines, I have to press CONTROL +
|
||||||
|
h to get a BACKSPACE. The inverse problem occurs when a user
|
||||||
|
connects to my Unix machines from a different system with a
|
||||||
|
correct backspace key.
|
||||||
|
|
||||||
|
[1] http://www.ibb.net/~anne/keyboard.html
|
||||||
|
[2] http://www.tldp.org/HOWTO/Keyboard-and-Console-HOWTO-5.html
|
||||||
|
|
||||||
|
9
LICENSE
9
LICENSE
@ -1,15 +1,16 @@
|
|||||||
MIT/X Consortium License
|
MIT/X Consortium License
|
||||||
|
|
||||||
© 2009-2012 Aurélien APTEL <aurelien dot aptel at gmail dot com>
|
© 2009-2012 Aurélien APTEL <aurelien dot aptel at gmail dot com>
|
||||||
© 2009 Anselm R Garbe <garbeam at gmail dot com>
|
© 2009 Anselm R Garbe <garbeam at gmail dot com>
|
||||||
© 2012 Roberto E. Vargas Caballero <k0ga at shike2 dot com>
|
© 2012-2014 Roberto E. Vargas Caballero <k0ga at shike2 dot com>
|
||||||
© 2012 Christoph Lohmann <20h at r-36 dot net>
|
© 2012-2014 Christoph Lohmann <20h at r-36 dot net>
|
||||||
© 2013 Eon S. Jeon <esjeon at hyunmu dot am>
|
© 2013 Eon S. Jeon <esjeon at hyunmu dot am>
|
||||||
© 2013 Alexander Sedov <alex0player at gmail dot com>
|
© 2013 Alexander Sedov <alex0player at gmail dot com>
|
||||||
© 2013 Mark Edgar <medgar123 at gmail dot com>
|
© 2013 Mark Edgar <medgar123 at gmail dot com>
|
||||||
© 2013 Eric Pruitt <eric.pruitt at gmail dot com>
|
© 2013 Eric Pruitt <eric.pruitt at gmail dot com>
|
||||||
© 2013 Michael Forney <mforney at mforney dot org>
|
© 2013 Michael Forney <mforney at mforney dot org>
|
||||||
© 2013 Markus Teich <markus dot teich at stusta dot mhn dot de>
|
© 2013-2014 Markus Teich <markus dot teich at stusta dot mhn dot de>
|
||||||
|
© 2014 Laslo Hunhold <dev at frign dot de>
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a
|
Permission is hereby granted, free of charge, to any person obtaining a
|
||||||
copy of this software and associated documentation files (the "Software"),
|
copy of this software and associated documentation files (the "Software"),
|
||||||
|
2
README
2
README
@ -1,6 +1,6 @@
|
|||||||
st - simple terminal
|
st - simple terminal
|
||||||
--------------------
|
--------------------
|
||||||
st is a simple virtual terminal emulator for X which sucks less.
|
st is a simple terminal emulator for X which sucks less.
|
||||||
|
|
||||||
|
|
||||||
Requirements
|
Requirements
|
||||||
|
1
TODO
1
TODO
@ -12,6 +12,7 @@ drawing
|
|||||||
-------
|
-------
|
||||||
* add diacritics support to xdraws()
|
* add diacritics support to xdraws()
|
||||||
* make the font cache simpler
|
* make the font cache simpler
|
||||||
|
* add better support for brightening of the upper colors
|
||||||
|
|
||||||
bugs
|
bugs
|
||||||
----
|
----
|
||||||
|
23
config.def.h
23
config.def.h
@ -8,10 +8,14 @@
|
|||||||
static char font[] = "Liberation Mono:pixelsize=12:antialias=false:autohint=false";
|
static char font[] = "Liberation Mono:pixelsize=12:antialias=false:autohint=false";
|
||||||
static int borderpx = 2;
|
static int borderpx = 2;
|
||||||
static char shell[] = "/bin/sh";
|
static char shell[] = "/bin/sh";
|
||||||
|
static char *utmp = NULL;
|
||||||
|
|
||||||
/* Kerning / character bounding-box mutlipliers */
|
/* identification sequence returned in DA and DECID */
|
||||||
float cwscale = 1.0;
|
static char vtiden[] = "\033[?6c";
|
||||||
float chscale = 1.0;
|
|
||||||
|
/* Kerning / character bounding-box multipliers */
|
||||||
|
static float cwscale = 1.0;
|
||||||
|
static float chscale = 1.0;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* word delimiter string
|
* word delimiter string
|
||||||
@ -137,7 +141,7 @@ static Shortcut shortcuts[] = {
|
|||||||
* * > 0: crlf mode is enabled
|
* * > 0: crlf mode is enabled
|
||||||
* * < 0: crlf mode is disabled
|
* * < 0: crlf mode is disabled
|
||||||
*
|
*
|
||||||
* Be careful with the order of the definitons because st searchs in
|
* Be careful with the order of the definitions because st searches in
|
||||||
* this table sequentially, so any XK_ANY_MOD must be in the last
|
* this table sequentially, so any XK_ANY_MOD must be in the last
|
||||||
* position for a key.
|
* position for a key.
|
||||||
*/
|
*/
|
||||||
@ -154,6 +158,11 @@ static KeySym mappedkeys[] = { -1 };
|
|||||||
*/
|
*/
|
||||||
static uint ignoremod = Mod2Mask|XK_SWITCH_MOD;
|
static uint ignoremod = Mod2Mask|XK_SWITCH_MOD;
|
||||||
|
|
||||||
|
/* Override mouse-select while mask is active (when MODE_MOUSE is set).
|
||||||
|
* Note that if you want to use ShiftMask with selmasks, set this to an other
|
||||||
|
* modifier, set to 0 to not use it. */
|
||||||
|
static uint forceselmod = ShiftMask;
|
||||||
|
|
||||||
static Key key[] = {
|
static Key key[] = {
|
||||||
/* keysym mask string appkey appcursor crlf */
|
/* keysym mask string appkey appcursor crlf */
|
||||||
{ XK_KP_Home, ShiftMask, "\033[2J", 0, -1, 0},
|
{ XK_KP_Home, ShiftMask, "\033[2J", 0, -1, 0},
|
||||||
@ -193,7 +202,7 @@ static Key key[] = {
|
|||||||
{ XK_KP_Delete, ShiftMask, "\033[2K", -1, 0, 0},
|
{ XK_KP_Delete, ShiftMask, "\033[2K", -1, 0, 0},
|
||||||
{ XK_KP_Delete, ShiftMask, "\033[3;2~", +1, 0, 0},
|
{ XK_KP_Delete, ShiftMask, "\033[3;2~", +1, 0, 0},
|
||||||
{ XK_KP_Delete, XK_ANY_MOD, "\033[P", -1, 0, 0},
|
{ XK_KP_Delete, XK_ANY_MOD, "\033[P", -1, 0, 0},
|
||||||
{ XK_KP_Delete, XK_ANY_MOD, "\033[3~", +1, 0, 0},
|
{ XK_KP_Delete, XK_ANY_MOD, "\177", +1, 0, 0},
|
||||||
{ XK_KP_Multiply, XK_ANY_MOD, "\033Oj", +2, 0, 0},
|
{ XK_KP_Multiply, XK_ANY_MOD, "\033Oj", +2, 0, 0},
|
||||||
{ XK_KP_Add, XK_ANY_MOD, "\033Ok", +2, 0, 0},
|
{ XK_KP_Add, XK_ANY_MOD, "\033Ok", +2, 0, 0},
|
||||||
{ XK_KP_Enter, XK_ANY_MOD, "\033OM", +2, 0, 0},
|
{ XK_KP_Enter, XK_ANY_MOD, "\033OM", +2, 0, 0},
|
||||||
@ -212,7 +221,6 @@ static Key key[] = {
|
|||||||
{ XK_KP_7, XK_ANY_MOD, "\033Ow", +2, 0, 0},
|
{ XK_KP_7, XK_ANY_MOD, "\033Ow", +2, 0, 0},
|
||||||
{ XK_KP_8, XK_ANY_MOD, "\033Ox", +2, 0, 0},
|
{ XK_KP_8, XK_ANY_MOD, "\033Ox", +2, 0, 0},
|
||||||
{ XK_KP_9, XK_ANY_MOD, "\033Oy", +2, 0, 0},
|
{ XK_KP_9, XK_ANY_MOD, "\033Oy", +2, 0, 0},
|
||||||
{ XK_BackSpace, XK_NO_MOD, "\177", 0, 0, 0},
|
|
||||||
{ XK_Up, ShiftMask, "\033[1;2A", 0, 0, 0},
|
{ XK_Up, ShiftMask, "\033[1;2A", 0, 0, 0},
|
||||||
{ XK_Up, ControlMask, "\033[1;5A", 0, 0, 0},
|
{ XK_Up, ControlMask, "\033[1;5A", 0, 0, 0},
|
||||||
{ XK_Up, Mod1Mask, "\033[1;3A", 0, 0, 0},
|
{ XK_Up, Mod1Mask, "\033[1;3A", 0, 0, 0},
|
||||||
@ -249,7 +257,7 @@ static Key key[] = {
|
|||||||
{ XK_Delete, ShiftMask, "\033[2K", -1, 0, 0},
|
{ XK_Delete, ShiftMask, "\033[2K", -1, 0, 0},
|
||||||
{ XK_Delete, ShiftMask, "\033[3;2~", +1, 0, 0},
|
{ XK_Delete, ShiftMask, "\033[3;2~", +1, 0, 0},
|
||||||
{ XK_Delete, XK_ANY_MOD, "\033[P", -1, 0, 0},
|
{ XK_Delete, XK_ANY_MOD, "\033[P", -1, 0, 0},
|
||||||
{ XK_Delete, XK_ANY_MOD, "\033[3~", +1, 0, 0},
|
{ XK_Delete, XK_ANY_MOD, "\177", +1, 0, 0},
|
||||||
{ XK_Home, ShiftMask, "\033[2J", 0, -1, 0},
|
{ XK_Home, ShiftMask, "\033[2J", 0, -1, 0},
|
||||||
{ XK_Home, ShiftMask, "\033[1;2H", 0, +1, 0},
|
{ XK_Home, ShiftMask, "\033[1;2H", 0, +1, 0},
|
||||||
{ XK_Home, XK_ANY_MOD, "\033[H", 0, -1, 0},
|
{ XK_Home, XK_ANY_MOD, "\033[H", 0, -1, 0},
|
||||||
@ -360,7 +368,6 @@ static Key key[] = {
|
|||||||
* ButtonRelease and MotionNotify.
|
* ButtonRelease and MotionNotify.
|
||||||
* If no match is found, regular selection is used.
|
* If no match is found, regular selection is used.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static uint selmasks[] = {
|
static uint selmasks[] = {
|
||||||
[SEL_RECTANGULAR] = Mod1Mask,
|
[SEL_RECTANGULAR] = Mod1Mask,
|
||||||
};
|
};
|
||||||
|
@ -14,7 +14,7 @@ X11LIB = /usr/X11R6/lib
|
|||||||
INCS = -I. -I/usr/include -I${X11INC} \
|
INCS = -I. -I/usr/include -I${X11INC} \
|
||||||
`pkg-config --cflags fontconfig` \
|
`pkg-config --cflags fontconfig` \
|
||||||
`pkg-config --cflags freetype2`
|
`pkg-config --cflags freetype2`
|
||||||
LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 -lutil -lXext -lXft \
|
LIBS = -L/usr/lib -lc -L${X11LIB} -lm -lrt -lX11 -lutil -lXext -lXft \
|
||||||
`pkg-config --libs fontconfig` \
|
`pkg-config --libs fontconfig` \
|
||||||
`pkg-config --libs freetype2`
|
`pkg-config --libs freetype2`
|
||||||
|
|
||||||
|
8
st.1
8
st.1
@ -10,6 +10,7 @@ st \- simple terminal
|
|||||||
.IR font ]
|
.IR font ]
|
||||||
.RB [ \-g
|
.RB [ \-g
|
||||||
.IR geometry ]
|
.IR geometry ]
|
||||||
|
.RB [ \-i ]
|
||||||
.RB [ \-o
|
.RB [ \-o
|
||||||
.IR file ]
|
.IR file ]
|
||||||
.RB [ \-t
|
.RB [ \-t
|
||||||
@ -36,11 +37,14 @@ defines the
|
|||||||
to use when st is run.
|
to use when st is run.
|
||||||
.TP
|
.TP
|
||||||
.BI \-g " geometry"
|
.BI \-g " geometry"
|
||||||
defines the X11 geometry string, which will fixate the height and width of st.
|
defines the X11 geometry string.
|
||||||
The form is [=][<width>{xX}<height>][{+-}<xoffset>{+-}<yoffset>]. See
|
The form is [=][<cols>{xX}<rows>][{+-}<xoffset>{+-}<yoffset>]. See
|
||||||
.BR XParseGeometry (3)
|
.BR XParseGeometry (3)
|
||||||
for further details.
|
for further details.
|
||||||
.TP
|
.TP
|
||||||
|
.B \-i
|
||||||
|
will fixate the position given with the -g option.
|
||||||
|
.TP
|
||||||
.BI \-o " file"
|
.BI \-o " file"
|
||||||
writes all the I/O to
|
writes all the I/O to
|
||||||
.I file.
|
.I file.
|
||||||
|
5
st.info
5
st.info
@ -53,7 +53,7 @@ st| simpleterm,
|
|||||||
ka3=\E[5~,
|
ka3=\E[5~,
|
||||||
kc1=\E[4~,
|
kc1=\E[4~,
|
||||||
kc3=\E[6~,
|
kc3=\E[6~,
|
||||||
kbs=\177,
|
kbs=\010,
|
||||||
kcbt=\E[Z,
|
kcbt=\E[Z,
|
||||||
kb2=\EOu,
|
kb2=\EOu,
|
||||||
kcub1=\EOD,
|
kcub1=\EOD,
|
||||||
@ -73,7 +73,7 @@ st| simpleterm,
|
|||||||
kri=\E[1;2A,
|
kri=\E[1;2A,
|
||||||
kclr=\E[3;5~,
|
kclr=\E[3;5~,
|
||||||
kdl1=\E[3;2~,
|
kdl1=\E[3;2~,
|
||||||
kdch1=\E[3~,
|
kdch1=\0177,
|
||||||
kich1=\E[2~,
|
kich1=\E[2~,
|
||||||
kend=\E[4~,
|
kend=\E[4~,
|
||||||
kf1=\EOP,
|
kf1=\EOP,
|
||||||
@ -183,7 +183,6 @@ st| simpleterm,
|
|||||||
smul=\E[4m,
|
smul=\E[4m,
|
||||||
tbc=\E[3g,
|
tbc=\E[3g,
|
||||||
tsl=\E]0;,
|
tsl=\E]0;,
|
||||||
ul,
|
|
||||||
xenl,
|
xenl,
|
||||||
vpa=\E[%i%p1%dd,
|
vpa=\E[%i%p1%dd,
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user