Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-07-03 | Added Configs | rafa_99 | |
2020-07-03 | Ligatures Patch | rafa_99 | |
2020-07-03 | Scrollback Patch | rafa_99 | |
2020-07-03 | Font2 Patch | rafa_99 | |
2020-07-03 | Blinking Cursor Patch | rafa_99 | |
2020-07-03 | Alpha Patch | rafa_99 | |
2020-07-03 | Updated Source to Bumped Version | rafa_99 | |
2020-05-26 | Updated Configs | rafa_99 | |
2020-05-26 | Merge branch 'bump' into 'master' | Rafael Marçalo | |
Bumped to Version 0.8.3 See merge request rafa_99/st!3 | |||
2020-05-26 | Fixed Up Font | rafa_99 | |
2020-05-26 | Added Custom Config | rafa_99 | |
2020-05-26 | Ligatures Patch | rafa_99 | |
2020-05-26 | Scrollback Patch | rafa_99 | |
2020-05-26 | Font2 Patch | rafa_99 | |
2020-05-26 | Alpha Patch | rafa_99 | |
2020-05-26 | Bump to version 0.8.3 | rafa_99 | |
2020-04-26 | Updated Fonts | rafa_99 | |
2020-03-24 | Fixed Font Compile Error | rafa_99 | |
2020-03-22 | Updated ST Bindings | rafa_99 | |
2020-03-15 | Updated Font | rafa_99 | |
2020-03-15 | Font2 Patch | rafa_99 | |
2020-03-07 | Updated Colors Header | rafa_99 | |
2020-02-21 | Added Stock Colors | rafa_99 | |
2020-02-21 | Modularized Colors for Easy Replacement | rafa_99 | |
2020-02-20 | Updated Config | rafa_99 | |
2020-02-20 | Updated ST Color Scheme | rafa_99 | |
2020-02-20 | Updated White Color | rafa_99 | |
2020-02-20 | Updated ColorScheme | rafa_99 | |
2020-01-15 | Added Transparency | rafa_99 | |
2019-11-25 | Updated Zoom Reset Key | rafa_99 | |
2019-11-24 | Added Logo and Updated Config | rafa_99 | |
2019-11-24 | Added Custom Config | rafa_99 | |
2019-11-24 | Vertical Center Patch | rafa_99 | |
2019-11-24 | Scrollback Patch | rafa_99 | |
2019-11-24 | Boxdraw Patch | rafa_99 | |
2019-08-26 | config.def.h: remove crlf value section | Hiltjo Posthuma | |
this is not used anymore. patch sent as an ed script using RFC2549 by k0ga. | |||
2019-05-17 | FAQ: add entry about color emoji Xft bug | Hiltjo Posthuma | |
This has been asked many times on IRC and the mailinglist. Make it easier to find information about this particular Xft issue by adding it to the FAQ. | |||
2019-04-14 | selection: fix view to match actual selection on first cell | Avi Halachmi (:avih) | |
2019-03-15 | revert part of commit add0211522737b79dad990ccd65c8af63b5cc1dd | Hiltjo Posthuma | |
"use iswspace()/iswpunct() to find word delimiters this inverts the configuration logic: you no longer provide a list of delimiters -- all space and punctuation characters are considered delimiters, unless listed in extrawordchars." Feedback from IRC and personal preference. | |||
2019-03-15 | dont print color warning on color reset OSC 104 without parameter | Hiltjo Posthuma | |
also print explicitly "(null)" when printf "%s" p=NULL. noticed when exiting mutt: printf '\x1b]104\x07' | |||
2019-03-15 | minor code-style, initialize var at the top of function | Hiltjo Posthuma | |
2019-03-15 | config.def.h: tweak extra worddelimiters | Hiltjo Posthuma | |
This changes the selection more like xterm. To test try: "find /" and select a path. | |||
2019-03-15 | use iswspace()/iswpunct() to find word delimiters | Lauri Tirkkonen | |
this inverts the configuration logic: you no longer provide a list of delimiters -- all space and punctuation characters are considered delimiters, unless listed in extrawordchars. | |||
2019-03-15 | replace utf8strchr with wcschr | Lauri Tirkkonen | |
2019-03-13 | be silent about explicitly unhandled mouse modes | Lauri Tirkkonen | |
2019-03-03 | simplify (greedy) font caching allocating a bit | Hiltjo Posthuma | |
POSIX says: "If ptr is a null pointer, realloc() shall be equivalent to malloc() for the specified size." | |||
2019-03-03 | style: remove double empty newlines | Hiltjo Posthuma | |
2019-03-03 | fix use after free in font caching algorithm | magras | |
Current font caching algorithm contains a use after free error. A font removed from `frc` might be still listed in `wx.specbuf`. It will lead to a crash inside `XftDrawGlyphFontSpec()`. Steps to reproduce: $ st -f 'Misc Tamsyn:scalable=false' $ curl https://www.cl.cam.ac.uk/~mgk25/ucs/examples/UTF-8-demo.txt Of course, result depends on fonts installed on a system and fontconfig. In my case, I'm getting consistent segfaults with different fonts. I replaced a fixed array with a simple unbounded buffer with a constant growth rate. Cache starts with a capacity of 0, gets increments by 16, and never shrinks. On my machine after `cat UTF-8-demo.txt` buffer reaches a capacity of 192. During casual use capacity stays at 0. | |||
2019-02-12 | better Input Method Editor (IME) support | Ivan Tham | |
Features: - Allow input methods swap with hotkey (E.g. left ctrl + left shift). - Over-the-spot pre-editing style, pre-edit data placed over insertion point. - Restart IME without segmentation fault. TODO: - Automatically pickup IME if st started before IME | |||
2019-02-09 | bump version to 0.8.2 | Hiltjo Posthuma | |