1005 Commits (ffe6670fe243e37afffab1f6e8062273c97fbed1)
 

Author SHA1 Message Date
Luke Smith ffe6670fe2 alt-shift-up/down for zooming 7 years ago
Luke Smith 02ebb37e50
Merge pull request #5 from cquijano/patched
fix defaultbg value, solve sigfault
7 years ago
Carlos Quijano c49edb020e fix defaultbg value, solve sigfault 7 years ago
Luke Smith 43af5f7790 manual updates 7 years ago
Luke Smith f9cd5efaa0 shift-insert now pastes from clipboard 7 years ago
Luke Smith 7f231a6b54 xresources patch now default 7 years ago
Luke Smith 195535facc wal compatibility added 7 years ago
Luke Smith ae9739faed alt-shift-j/k zoom bindings b/c why not lmao 7 years ago
Luke Smith f6ecf743ab cleaning 7 years ago
Luke Smith cd357e5c67 Big cleanup and some redundant bindings added 7 years ago
Kornelije Sajler 60ea12d971 Updated few minor changes in README. 7 years ago
Kornelije Sajler 67940f05e5 Updated README with few more info. 7 years ago
Kornelije Sajler 582549f486 Updade README with more info no custom changes.
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.
7 years ago
Kornelije Sajler 0ad3d4eddf Updated st 0.8.1. Used new patches, scrollblock and alpha fixed.
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.
7 years ago
Luke Smith efad574780 transparency more opaque 7 years ago
Luke Smith 8c0ade2c1e transparency now default 7 years ago
Luke 3ffde570e0 transparency explanation added 7 years ago
Luke Smith 23a6f74157
Merge pull request #1 from PhilipNelson5/patch-1
spelling
7 years ago
Philip Nelson 9ade6ae63a
spelling 7 years ago
Luke f684e44e69 readme changes 7 years ago
Luke 858a34ade6 readme explains transparency installation 7 years ago
Luke 5d1d32f571 fixed transparency patch added 7 years ago
Luke 1cfd5953dc redundant readme line removed 7 years ago
Luke 167a334f2c alt-u & alt-d: up & down in history; readme update 7 years ago
Luke 8b29be268a fix of brainlet error, formatting fix too 7 years ago
Luke 4f508ec001 formatting 7 years ago
Luke 3cb5996688 alt-j/k for scrolling up one line at a time 7 years ago
Luke 61824fc462 key bindings stated in README 7 years ago
Luke 234972a077 readme now personalized 7 years ago
Luke a9b51e4ec0 color toggle now Alt-Tab instead of F6 7 years ago
Luke 74e54e0ccc mono default font, 14pt 7 years ago
Shiva c50850028b Enable travis build 8 years ago
Shiva b1e1a6e993 Add badges 8 years ago
Shiva 5d52a549f9 Merge pull request #2 from gitter-badger/gitter-badge-1
Add a Gitter chat link to README
8 years ago
The Gitter Badger 778e1f0cf7 Add Gitter link 8 years ago
Shiva 97e27bc64d Update readme with details about patches 8 years ago
Shiva efde1e896e Solarized support + switch with F6 8 years ago
Shiva e0a07a9392 vertically center lines in space available 8 years ago
Shiva 10bf3c8507 Scrollback + wheel support 8 years ago
Shiva 6833411400 clipboard support 8 years ago
Shiva 7549ffd200 Clean generated config.h 8 years ago
fpqc c63a87cd93 Move column and row default numbers into config.h 8 years ago
Roberto E. Vargas Caballero e44832408b Revert "Initial font size issue."
This reverts commit 424202798b.
8 years ago
Spencer Phippen fa9a459972 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
8 years ago
Manuel Tobias Schiller 740ada1447 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.
8 years ago
ian@remmler.org 424202798b 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.
8 years ago
pl@ninthfloor.org 3ca7249c86 tic -s -> tic -sx (Treat unknown capabilities as user-defined.) 8 years ago
pl@ninthfloor.org 06f8cf8ca8 Add tmux capabilities to st.info 8 years ago
pl@ninthfloor.org 902a392b90 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.
8 years ago
Quentin Rameau 8c99915608 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.
8 years ago