Commits
- Commit:
20f713548de451b67db3306cf8cf7b2f38fee05c- From:
- Roberto E. Vargas Caballero <k0ga@shike2.com>
- Date:
Change default keybindings
CTRL+SHIFT is an impossible combination in the terminal world
(0x20 | x & 0x1F), so it is perfect to be used for internals
shortcuts of terminals, and being a double combination
reduces the prossibility of having comflicts.
- Commit:
e2ee5ee6114eb74bb08cb9abe5a3020203e92688- From:
- Michael Forney <mforney@mforney.org>
- Date:
Split X-specific code into x.c
- Commit:
c63a87cd936c1eeef14c4c21572e5b782d3df4bc- From:
- fpqc <harry.gindi@live.com>
- Via:
- Quentin Rameau <quinq@fifth.space>
- Date:
Move column and row default numbers into config.h
- Commit:
e44832408bb3147826c346872b49de105a4d0e0b- From:
- Roberto E. Vargas Caballero <k0ga@shike2.com>
- Date:
Revert "Initial font size issue."
This reverts commit 424202798b02554092ba84dd59fb7b79b59b7b75.
- Commit:
fa9a4599720703932d1c4f16b9aeee1f91f96263- From:
- Spencer Phippen <spencer.phippen@gmail.com>
- Via:
- Roberto E. Vargas Caballero <k0ga@shike2.com>
- Date:
Fixed 'missing glyph doesn't use fontconfig config substitutions' bug
XftFontMatch does display-specific font configuration (commit 528241a).
Nice. Unfortunately, when we switched from FcFontMatch, we also stopped
storing the post-Fc{Config,Default}Substitute FcPattern for future
lookups. The result is that if a glyph isn't found in the primary font,
secondary font lookups use the original FcPattern, not the configured
one. If you have custom fontconfig rules (like me), this can be
disappointing.
I basically just copied the guts out of XftFontMatch[1] and saved
the intermediate configured FcPattern. Could be related to the bug that
inspired commit 4242027.
[1]: https://cgit.freedesktop.org/xorg/lib/libXft/tree/src/xftfont.c
- Commit:
740ada1447a0bf9eb7db327d9433fa0b96e0a4d8- From:
- Manuel Tobias Schiller <mala@hinterbergen.de>
- Via:
- Roberto E. Vargas Caballero <k0ga@shike2.com>
- Date:
make the various combinations of arrow keys and shift/control/meta work
When using st with screen, I've bound next, prev, new screen to
combinations like Ctrl-Alt-Right,Left,Down; xterm and (u)rxvt work fine
when this combination of modifiers is pressed, st does not seem to
transport all of them; a single modifier key is fine (e.g. Ctrl-Up,
Alt-Down etc., but combinations are not). While I'm not terribly
familiar with this, I have tried to hack config.h in a more or less
systematic way to generate the expected sequences.
- Commit:
424202798b02554092ba84dd59fb7b79b59b7b75- From:
- ian@remmler.org <ian@remmler.org>
- Via:
- Roberto E. Vargas Caballero <k0ga@shike2.com>
- Date:
Initial font size issue.
Hi,
When I specify a font by point size (I'm using "Inconsolata:size=12"),
characters that are substituted from another font because they are not in the
main one appear too small. Doing a zoom reset fixes it. For example:
Before: http://i.imgur.com/G4Mfv4X.png
After: http://i.imgur.com/PMDhfQA.png
I found that adding the pixel size (acquired from the initial font load) to the
pattern then reloading the font fixes the problem. I'm not sure if this is a
proper fix, though.
- Commit:
3ca7249c8685a9ff2d8ce23273fe0313b5804473- From:
- pl@ninthfloor.org <pl@ninthfloor.org>
- Via:
- Roberto E. Vargas Caballero <k0ga@shike2.com>
- Date:
tic -s -> tic -sx (Treat unknown capabilities as user-defined.)
- Commit:
06f8cf8ca87a81db15816658c40b2afcd1ad5332- From:
- pl@ninthfloor.org <pl@ninthfloor.org>
- Via:
- Roberto E. Vargas Caballero <k0ga@shike2.com>
- Date:
Add tmux capabilities to st.info
- Commit:
902a392b905107c7b8a318c103837c54e47a068e- From:
- pl@ninthfloor.org <pl@ninthfloor.org>
- Via:
- Roberto E. Vargas Caballero <k0ga@shike2.com>
- Date:
Make strdump(), csidump(), print to stderr
The two functions strdump(), csidump() are called to show errors and
their output is introduced by a message printed to stderr. Thus, it it
more consistent to have them print to stderr.
Moreover stderr is unbuffered (at least on Linux), making problems
immediately visible.
- Commit:
8c99915608beee03eca3bae6ed92264a0da87e2f- From:
- Quentin Rameau <quinq@fifth.space>
- Date:
Do not use color when font attributes are supported
If fontconfig gives us a font without the attributes we asked for,
display an alternative color instead.
- Commit:
7854fde1ff95ba85239ccfe1b59b555bd245d0db- From:
- Quentin Rameau <quinq@fifth.space>
- Date:
st.1: add an entry for ISO-14755 shortcut
- Commit:
68bae9c7b121e30114f6b0cabe15da3fae46e673- From:
- Quentin Rameau <quinq@fifth.space>
- Date:
Add support for iso14755
We launch dmenu for getting a codepoint, then convert it and send it to
the terminal.
- Commit:
331033f1f6abe259218666e6f6a848f38d884078- From:
- Klemens Nanni <kl3@posteo.org>
- Via:
- Quentin Rameau <quinq@fifth.space>
- Date:
Add missing device path to '-l' example
Also, it's ttyS0 not ttySO.
- Commit:
f7398434b8fa949af7bf43472caaefdd97eed0f3- From:
- Roberto E. Vargas Caballero <roberto.vargas@igrid-td.com>
- Date:
Add parsing of DCS q sequences
These sequences are used to operate with sixels, but they are still
str sequences, so they are finished with \a, ST or with a C1 control
code. This patch also disables utf8 handling for the case of sixels.
- Commit:
f0e2d28732549690466df995981698173daf39c0- From:
- Roberto E. Vargas Caballero <roberto.vargas@igrid-td.com>
- Date:
Add support for enabling/disabling utf
There are some ocasions where we want to disable the enconding/decoding of utf8, mainly
because it adds an important overhead. This is partial patch for ESC % G and ESC % @,
where they modified the way that st reads and write from/to the serial line, but it does
not modifies how it interacts with the X window part.
- Commit:
078337d7457f7869a85f4ec364be92b79e93c502- From:
- Roberto E. Vargas Caballero <roberto.vargas@igrid-td.com>
- Date:
Delete ncv capability from terminfo
We do not need to disable the previous ncv definition, because
there is not previous definition.
- Commit:
5ce853a1c14bab21c79af5470bff7bed07159ec5- From:
- Quentin Rameau <quinq@fifth.space>
- Via:
- Roberto E. Vargas Caballero <roberto.vargas@igrid-td.com>
- Date:
st.info: do not prevent st from displaying attributes
With ncv set to 3, we prevent st from displaying A_STANDOUT and
A_UNDERLINE with colors while our virtual terminal is capable of it.
- Commit:
023225ef40b23d888353e34d95790ddf1cc79458- From:
- Christoph Lohmann <20h@r-36.net>
- Date:
Update the LICENSE.
This is for the next release.
- Commit:
6e79e8357ed1987a7f7a52cc06249aadef478041- From:
- Christoph Lohmann <20h@r-36.net>
- Date:
0.7 release
- Commit:
308bfbf6be46ac5f0aa77b0e42a242eeb3ae1443- From:
- Christoph Lohmann <20h@r-36.net>
- Date:
Change who's expanding tabs.
- Commit:
c4f245eccd649b258c52f1405452df05180f7263- From:
- Christoph Lohmann <20h@r-36.net>
- Date:
Add some hint to have the pseudo terminal in the right mode.
If you don't make sure that the terminal does not expand tabs to spaces, of
course such a setting won't work.
- Commit:
2251f6465ae48aaa012fd686d6dcc4d3f41f77fe- From:
- Christoph Lohmann <20h@r-36.net>
- Date:
Add comment about tabspaces.
st.info needs to be changed too, when tabspaces are changed.
- Commit:
235b438e689e1fab677ee7e6ee53491867c16b9d- From:
- Alive 4ever <alive4ever@live.com>
- Via:
- Christoph Lohmann <20h@r-36.net>
- Date:
Consistent Alt+BackSpace behavior
The default config specifies BackSpace as "\177". The default behavior
should persist across modifier keys, commonly Mod1 (Alt or Meta) which
is widely used to delete a word on readline and text editors, notably
Emacs.
This will make Alt+BackSpace behaves as expected, i.e. sends "\033\177"
instead of "\033\010" as previous default behavior.
Signed-off-by: Christoph Lohmann <20h@r-36.net>
- Commit:
528241aa3835e2f1f052abeeaf891737712955a0- From:
- Christoph Lohmann <20h@r-36.net>
- Date:
Use XftFontMatch in place of FcFontMatch.
git am -s didn't like your patch:
From: Mark Edgar <medgar123@gmail.com>
XftFontMatch calls XftDefaultSubstitute which configures various match
properties according to the user's configured Xft defaults (xrdb) as well as
according to the current display and screen. Most importantly, the screen DPI
is computed [1]. Without this, st uses a "default" DPI of 75 [2].
[1]: https://cgit.freedesktop.org/xorg/lib/libXft/tree/src/xftdpy.c?id=libXft-2.3.2#n535
[2]: https://cgit.freedesktop.org/fontconfig/tree/src/fcdefault.c?id=2.11.1#n255
