Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-06-01 | Adding true mouse motion support. | ||
2013-06-01 | This is a shorter bit handling in MODE_MOUSE. | ||
2013-06-01 | Add some comments about the other mouse reporting modes. | ||
2013-06-01 | Implementing mouse focus and all events. | ||
2013-06-01 | Fixing bad highlighting on first SNAP_WORD multiline select. | ||
2013-05-26 | Fixing the selection in a single line again. | ||
Thanks p37sitdu@lavabit.com! | |||
2013-05-26 | Fixing the selection scrolling and the selection naming. | ||
Thanks p37sitdu@lavabit.com! | |||
2013-05-11 | Lazy font unloading too. | ||
2013-05-11 | Lazy fontset loading. | ||
Thanks Johannes Hofmann <Johannes.Hofmann@gmx.de>! | |||
2013-05-06 | Removing an old select() regression. | ||
2013-05-04 | Allow more complex delimiters for word selections. | ||
Thanks Alexander Rezinsky <alexrez@gmail.com>! | |||
2013-05-04 | Expand the last line with '\n' in case of overselection. | ||
Thanks Alexander Rezinsky <alexrez@gmail.com>! | |||
2013-05-04 | Select to the end of row if end of line is reached. | ||
Thanks Alexander Rezinsky <alexrez@gmail.com>! | |||
2013-05-04 | Better comments for the snapping code. | ||
2013-05-01 | More stable blinking. | ||
2013-04-28 | Selection snapping is now considering wrapping. | ||
Thanks Alexander Rezinsky <alexrez@gmail.com> for mentioning this! | |||
2013-04-28 | Add a possibility to modify the string sent by mouse buttons. | ||
Thanks Alexander Rezinsky <alexrez@gmail.com> for the suggestion! | |||
2013-04-26 | Be more efficient in blinking. | ||
2013-04-26 | Enable blinking in st. | ||
2013-04-25 | Fixing the selection handling to allow one char selection. | ||
Thanks Alexander Sedov <alex0player@gmail.com> for suggesting the fix! | |||
2013-04-24 | Fixing the selection issue in altscreens. | ||
2013-04-24 | Removed redundant check in draw code. | ||
We're now clearing empty areas with spaces, so there is no point to check if character contains non-empty string. Signed-off-by: Christoph Lohmann <20h@r-36.net> | |||
2013-04-23 | Fix selecting clearing and BCE | ||
The commit b78c5085f72 changed the st behaviour enabling BCE capability, that means erase regions using background color. Problem comes when you clear a region with a selection, because in this case the real mode of the Glyph is not the value of term.line[y][x], due in drawregion we had enabled the ATTR_REVERSE bit. Signed-off-by: Christoph Lohmann <20h@r-36.net> | |||
2013-04-23 | Now clipping is more clear. | ||
2013-04-23 | Removing the overdrawing of some fonts. | ||
2013-04-23 | Implementing 8 bit mode for meta. | ||
2013-04-21 | Adding wrap handling in selection. | ||
2013-04-20 | Added support for double/triple click+dragging. | ||
Now double-click+dragging automatically snaps both ends to word boundaries (unless on series of spaces), and triple-click selects whole lines. As a side effect, snapping now occurs on button press, not button release like it previously was, but I hope that won't be inconvenient for anyone. Signed-off-by: Christoph Lohmann <20h@r-36.net> | |||
2013-04-18 | Selection now handles empty lines less counter-intuitively. | ||
Now, when you are selecting a region, you will get all empty lines that happen to be in it, including trailing ones. Last line terminator is omitted as it previously was, though. Signed-off-by: Christoph Lohmann <20h@r-36.net> | |||
2013-04-18 | Removing trailing whitespace. | ||
2013-04-18 | Got rid of redundant Glyph state. | ||
Now, newly allocated Glyphs are set to spaces and current cursor colors with tclearregion() routine. Signed-off-by: Christoph Lohmann <20h@r-36.net> | |||
2013-04-18 | Removing unneeded comments. | ||
2013-04-18 | Got rid of code duplication in tnew() and tresize(). | ||
Signed-off-by: Christoph Lohmann <20h@r-36.net> | |||
2013-04-14 | Strip trailing spaces from lines when copying selection. | ||
Signed-off-by: Christoph Lohmann <20h@r-36.net> | |||
2013-04-14 | Enable BCE everywhere. | ||
2013-04-13 | Fix the geometry handling. | ||
2013-04-13 | Resize now uses xclear(). | ||
2013-04-13 | Drawing a more visible rectangle as cursor on unfocus. | ||
To have a more visible cursor on unfocused windows this patch makes st draw a rectangle around the terminal cell. Thanks Mark Hills <mark@xwax.org> for the suggestion! | |||
2013-04-13 | Patching while not really woken up. | ||
2013-04-13 | Minor naming issue fixed. | ||
2013-04-13 | Making the copy and pasting consistent. | ||
The copying and pasting in the terminald and GUI world is flawed. Due to the discussion on the mailinglist it seems that sending '\n' is what GUIs expect and '\r' what terminal applications want. St now implements that behaviour. | |||
2013-04-10 | Make st work with a plain -e command. | ||
2013-04-03 | Adopting arg.h with more flexible cmd handling. | ||
2013-04-03 | Add an option to disable alternative screens. | ||
2013-03-29 | Add the possibility to have default highlight colors. | ||
Thanks to stargrave@stargrave.org for the suggestion! | |||
2013-03-29 | Removing an undefined case. just do regular selections. | ||
2013-03-20 | Making rectangular selection work again. | ||
People sending me patches against strange revisions and basing on their own revisions make me having to reapply them. Then such errors appear. Thanks Alexander Sedov <alex0player@gmail.com> for noticing this. | |||
2013-03-10 | Pange seems to use ascent + descent instead of height. | ||
Thanks Bobby Powers <bobbypowers@gmail.com> for noticing this! | |||
2013-02-26 | Using strsep and fixing null termination in csiparse. | ||
Thanks for the hint from Alexander Sedov <alex0player@gmail.com>! | |||
2013-02-26 | Changing the way how paste is handled, just for the nano people. | ||