summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-07-07xresources patch now defaultLuke Smith
2018-06-25wal compatibility addedLuke Smith
2018-05-01alt-shift-j/k zoom bindings b/c why not lmaoLuke Smith
2018-05-01cleaningLuke Smith
2018-05-01Big cleanup and some redundant bindings addedLuke Smith
2018-04-25Updated few minor changes in README.Kornelije Sajler
2018-04-25Updated README with few more info.Kornelije Sajler
2018-04-25Updade README with more info no custom changes.Kornelije Sajler
Updated config.def.h with my/luke preferences. Font=14px, alpha=0xcd, colorname[]=pop_os-inspired. Changed values for bg,fg and cursor using 256, 257, 258 indexs from colorname[]. Patched with luke's keymapping's.
2018-04-25Updated st 0.8.1. Used new patches, scrollblock and alpha fixed.Kornelije Sajler
Created run-patches.sh, runs all patches on clean st 0.8.1 code. All old patches remvoed, including trasparency diff. Not including solarized theme, don't see value of it. Commented colornames array with color indexs from 0-15, includes index 255, and afterwards bg, fg and cursor, change those for background, foreground and cursor color. Seems better than solarized toggle. Updated README.
2018-03-12transparency more opaqueLuke Smith
2018-03-10transparency now defaultLuke Smith
2018-02-05transparency explanation addedLuke
2018-01-30Merge pull request #1 from PhilipNelson5/patch-1Luke Smith
spelling
2018-01-21spellingPhilip Nelson
2018-01-21readme changesLuke
2018-01-19readme explains transparency installationLuke
2018-01-19fixed transparency patch addedLuke
2018-01-18redundant readme line removedLuke
2018-01-18alt-u & alt-d: up & down in history; readme updateLuke
2018-01-18fix of brainlet error, formatting fix tooLuke
2018-01-18formattingLuke
2018-01-18alt-j/k for scrolling up one line at a timeLuke
2018-01-18key bindings stated in READMELuke
2018-01-18readme now personalizedLuke
2018-01-17color toggle now Alt-Tab instead of F6Luke
2018-01-17mono default font, 14ptLuke
2017-01-30Enable travis buildShiva
2017-01-30Add badgesShiva
2017-01-30Merge pull request #2 from gitter-badger/gitter-badge-1Shiva
Add a Gitter chat link to README
2017-01-31Add Gitter linkThe Gitter Badger
2017-01-29Update readme with details about patchesShiva
2017-01-29Solarized support + switch with F6Shiva
2017-01-29vertically center lines in space availableShiva
2017-01-29Scrollback + wheel supportShiva
2017-01-29clipboard supportShiva
2017-01-29Clean generated config.hShiva
2016-12-16Move column and row default numbers into config.hfpqc
2016-11-24Revert "Initial font size issue."Roberto E. Vargas Caballero
This reverts commit 424202798b02554092ba84dd59fb7b79b59b7b75.
2016-11-24Fixed 'missing glyph doesn't use fontconfig config substitutions' bugSpencer Phippen
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
2016-11-14make the various combinations of arrow keys and shift/control/meta workManuel Tobias Schiller
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.
2016-11-14Initial font size issue.ian@remmler.org
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.
2016-11-14tic -s -> tic -sx (Treat unknown capabilities as user-defined.)pl@ninthfloor.org
2016-11-14Add tmux capabilities to st.infopl@ninthfloor.org
2016-11-14Make strdump(), csidump(), print to stderrpl@ninthfloor.org
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.
2016-10-23Do not use color when font attributes are supportedQuentin Rameau
If fontconfig gives us a font without the attributes we asked for, display an alternative color instead.
2016-10-22st.1: add an entry for ISO-14755 shortcutQuentin Rameau
2016-10-18Add support for iso14755Quentin Rameau
We launch dmenu for getting a codepoint, then convert it and send it to the terminal.
2016-10-13Add missing device path to '-l' exampleKlemens Nanni
Also, it's ttyS0 not ttySO.
2016-09-14Add parsing of DCS q sequencesRoberto E. Vargas Caballero
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.
2016-09-13Add support for enabling/disabling utfRoberto E. Vargas Caballero
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.