aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Fix manpage typoParide Legovini2017-10-10
| | | | Signed-off-by: Paride Legovini <pl@ninthfloor.org>
* Add an error for XftFontOpenPattern failure.Gary Allen Vollink2017-09-15
|
* Revert "Revert "fixed STLDFLAG order in broken st Makefile""Hiltjo Posthuma2017-09-15
| | | | | | | | | | This reverts commit 274d46ace00003d1df718b974d17642cbce167d5. Sorry, the original commit was correct after all. It allows has the correct link order and supports static-linking also. Just a reminder: it is important to give a (brief) rationale of the patch intentions.
* base64dec: skip non-printable characters like \r\nSuraj N. Kurapati2017-09-15
| | | | | | | | Non-printable characters, such as line breaks, in a base64 encoded string violate the "string length must be a multiple of four" rule. This patch pads the result buffer by one extra unit of four bytes, and skips over non-printable characters found in the input string.
* Revert "fixed STLDFLAG order in broken st Makefile"Hiltjo Posthuma2017-09-13
| | | | | | | | This reverts commit 7f990328e4fec8dfaaad311cb8af2304b58c872e. this was wrong as pointed out by k0ga: "STLDFLAGS is about flags to the linker, for example -L not about -l for that reason it must go before the object list".
* Revert "make clipboard patch obsolete"Hiltjo Posthuma2017-09-02
| | | | | | | This reverts commit 77c51c5a6b16387f1792e23acbcf2080f790aa25. Having multiple clipboards are useful, for example for plumber scripts. I've discussed this on IRC and it is useful to have.
* make clipboard patch obsoleteAnselm R Garbe2017-09-01
|
* fixed STLDFLAG order in broken st MakefileAnselm R Garbe2017-07-23
|
* Revert "Add bold off SGR"Quentin Rameau2017-07-12
| | | | | This reverts commit 6cb6d61525931c88971cce323f63e40451a6d365. This wasn't a useful thing after all.
* Add dim/smxx/rmxx to terminfo, remove duplicate kich1Quentin Rameau2017-07-12
|
* Let the user specify C and LD FLAGSQuentin Rameau2017-07-12
|
* Do not obfuscate what make is doing.Quentin Rameau2017-07-12
| | | | Change some styling too while we're at it.
* Add color change terminfo capabilitiesMarc André Tanner2017-06-03
|
* Add bold off SGRQuentin Rameau2017-06-03
|
* st.1: modify man page to accurately reflect default keybindingsgreg.reagle@umbc.edu2017-04-10
| | | | | | | | | | | | | Attached. ===> 2/ (text/x-patch) [file] cp /mail/fs/mbox/298/2/body /usr/k0ga/0001-st.1-modify-man-page-to-accurately-reflect-default-k.patch From 265db94b1eca5850d484f86b7db4af8e57822cfe Mon Sep 17 00:00:00 2001 From: Greg Reagle <greg.reagle@umbc.edu> Date: Sun, 9 Apr 2017 23:05:47 -0400 Subject: [PATCH] st.1: modify man page to accurately reflect default keybindings
* Simplify how we keep ATTRs under cursorQuentin Rameau2017-04-04
| | | | Thanks to tarug0 for the suggestion/patch.
* Fix commented out codeAlexander Krotov2017-03-29
|
* keep some glyph modes for the cursorNils Reuße2017-03-29
| | | | | | | | | | | | | st currently does not keep any mode for the cursor that was active in the underlying glyph (e.g. italic text), the mode is always ATTR_NULL [1]. At [2] you can find a screenshot that shows the implications. Other terminals (at least vte-based, such as XFCE-terminal) keep some modes for the cursor. I find the current behaviour very disruptive, so here is a patch that keeps a few (arbitrarily chosen) modes for the cursor. [1] http://git.suckless.org/st/tree/st.c#n3963 [2] http://i.imgur.com/R2yCEaC.png
* Support xterm Ms feature to set clipboardosandov@osandov.com2017-03-19
| | | | This is used by, e.g., tmux.
* Change default keybindingsRoberto E. Vargas Caballero2017-01-25
| | | | | | | 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.
* Split X-specific code into x.cMichael Forney2017-01-20
|
* Move column and row default numbers into config.hfpqc2016-12-16
|
* Revert "Initial font size issue."Roberto E. Vargas Caballero2016-11-24
| | | | This reverts commit 424202798b02554092ba84dd59fb7b79b59b7b75.
* Fixed 'missing glyph doesn't use fontconfig config substitutions' bugSpencer Phippen2016-11-24
| | | | | | | | | | | | | | | | 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
* make the various combinations of arrow keys and shift/control/meta workManuel Tobias Schiller2016-11-14
| | | | | | | | | | 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.
* Initial font size issue.ian@remmler.org2016-11-14
| | | | | | | | | | | | | | | 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.
* tic -s -> tic -sx (Treat unknown capabilities as user-defined.)pl@ninthfloor.org2016-11-14
|
* Add tmux capabilities to st.infopl@ninthfloor.org2016-11-14
|
* Make strdump(), csidump(), print to stderrpl@ninthfloor.org2016-11-14
| | | | | | | | | 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.
* Do not use color when font attributes are supportedQuentin Rameau2016-10-23
| | | | | If fontconfig gives us a font without the attributes we asked for, display an alternative color instead.
* st.1: add an entry for ISO-14755 shortcutQuentin Rameau2016-10-22
|
* Add support for iso14755Quentin Rameau2016-10-18
| | | | | We launch dmenu for getting a codepoint, then convert it and send it to the terminal.
* Add missing device path to '-l' exampleKlemens Nanni2016-10-13
| | | | Also, it's ttyS0 not ttySO.
* Add parsing of DCS q sequencesRoberto E. Vargas Caballero2016-09-14
| | | | | | 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.
* Add support for enabling/disabling utfRoberto E. Vargas Caballero2016-09-13
| | | | | | | 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.
* Delete ncv capability from terminfoRoberto E. Vargas Caballero2016-09-09
| | | | | We do not need to disable the previous ncv definition, because there is not previous definition.
* st.info: do not prevent st from displaying attributesQuentin Rameau2016-09-09
| | | | | 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.
* Update the LICENSE.Christoph Lohmann2016-08-11
| | | | This is for the next release.
* 0.7 release0.7Christoph Lohmann2016-08-11
|
* Change who's expanding tabs.Christoph Lohmann2016-07-20
|
* Add some hint to have the pseudo terminal in the right mode.Christoph Lohmann2016-07-20
| | | | | If you don't make sure that the terminal does not expand tabs to spaces, of course such a setting won't work.
* Add comment about tabspaces.Christoph Lohmann2016-07-20
| | | | st.info needs to be changed too, when tabspaces are changed.
* Consistent Alt+BackSpace behaviorAlive 4ever2016-07-12
| | | | | | | | | | | | 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>
* Use XftFontMatch in place of FcFontMatch.Christoph Lohmann2016-06-03
| | | | | | | | | | | | | | 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
* delete clipboard properties after pasting themv4hn2016-06-03
| | | | | | | | | | | | | | https://tronche.com/gui/x/icccm/sec-2.html#s-2.4 specifies: > Once all the data in the selection has been retrieved, > the requestor should delete the property in the SelectionNotify request Most Clipboard-Owners ignore whether or not the property is already set, so this is mostly a cosmetic change to keep the windows property list clean. However, at least synergy decides to wait for the requestor to delete the properties if they are already set by a previous paste (from synergy). Signed-off-by: Christoph Lohmann <20h@r-36.net>
* Remove stupid assignation in memcpy()Roberto E. Vargas Caballero2016-04-15
|
* st: Fix off-by-one error when calculating character width.Tor Andersson2016-03-09
| | | | | | | | | | | | LEN(str) is one larger than strlen(str) because it also counts the zero terminator. The original code would include the .notdef glyph (since it'll try to encode character 0, which gets encoded to the .notdef glyph) when measuring the average dimensions of printable ascii characters. This causes problems with fonts like GNU Unifont where the .notdef glyph is not the same width as the usual half-width characters. Signed-off-by: Christoph Lohmann <20h@r-36.net>
* Fix vertical character alignment in some casesTon van den Heuvel2016-03-08
| | | | | | | | | The y-position of a character found by asking fontconfig for a matching font does not take the border pixels into account, resulting in a slightly misaligned vertical position. Signed-off-by: Ton van den Heuvel <tonvandenheuvel@gmail.com> Signed-off-by: Christoph Lohmann <20h@r-36.net>
* I like empty lines.Christoph Lohmann2016-03-08
|
* Measure the single advance width with a heuristic methodRyusei Yamaguchi2016-03-08
| | | | | | | | This fix is needed to use dual-width fonts, which have double-width glyphs (e.g. CJK unified ideographs). Signed-off-by: Ryusei Yamaguchi <mandel59@gmail.com> Signed-off-by: Christoph Lohmann <20h@r-36.net>