|  | Commit message (Expand) | Author | Age | Files | Lines | 
|---|
| * | Rename to termo | Přemysl Janouch | 2014-10-14 | 1 | -82/+82 | 
| * | Work on mouse support, it's a mess | Přemysl Janouch | 2014-10-13 | 1 | -41/+81 | 
| * | CMake-ify, rename to termkey2 for the time being | Přemysl Janouch | 2014-10-09 | 1 | -3/+3 | 
| * | Move to iconv | Přemysl Janouch | 2014-09-28 | 1 | -18/+11 | 
| * | Less code duplication | Přemysl Janouch | 2014-09-23 | 1 | -31/+13 | 
| * | Introduce isatty(3) | Přemysl Janouch | 2014-09-23 | 1 | -21/+2 | 
| * | Introduce bsearch(3) | Přemysl Janouch | 2014-09-23 | 1 | -27/+15 | 
| * | Add -Wextra | Přemysl Janouch | 2014-09-23 | 1 | -2/+2 | 
| * | WIP: Is mine now (^3^) | Přemysl Janouch | 2014-09-23 | 1 | -423/+464 | 
| * | Don't try to write() the start/stop string if the fd is a pipe, because this ... | Paul LeoNerd Evans | 2012-01-20 | 1 | -0/+18 | 
| * | Allow {start,stop}_driver to fail, abort constructor, have driver-ti try to w... | Paul LeoNerd Evans | 2012-01-20 | 1 | -8/+35 | 
| * | (void)-cast calls to write() in driver-ti start/stop since we don't -really- ... | Paul LeoNerd Evans | 2012-01-20 | 1 | -2/+2 | 
| * | Allow passing fd = -1 to constructor to make an instance not associated with ... | Paul LeoNerd Evans | 2012-01-18 | 1 | -2/+2 | 
| * | Optionally support unibilium for reading terminfo instead of curses | Paul LeoNerd Evans | 2011-09-24 | 1 | -5/+41 | 
| * | Neaten logic by loading terminfo strings in a separate function from the cons... | Paul LeoNerd Evans | 2011-09-23 | 1 | -18/+26 | 
| * | strdup() needs 'define _XOPEN_SOURCE 600 - Petr Pavlu | Paul LeoNerd Evans | 2011-08-25 | 1 | -2/+1 | 
| * | Solaris requires #define _XPG6 | Paul LeoNerd Evans | 2011-04-04 | 1 | -0/+1 | 
| * | include <curses.h> before <term.h> as it's required in that order on Solaris | Paul LeoNerd Evans | 2011-03-30 | 1 | -1/+1 | 
| * | Moved mouse parsing code out of driver-ti.c into core termkey.c | Paul LeoNerd Evans | 2009-11-26 | 1 | -9/+11 | 
| * | Remember to zero key->modifiers for mouse events | Paul LeoNerd Evans | 2009-11-25 | 1 | -0/+1 | 
| * | Implement XTerm mouse parsing in terminfo driver | Paul LeoNerd Evans | 2009-11-24 | 1 | -12/+49 | 
| * | Renamed all type names to CamelCaseNames for visual distinctness, separate fr... | Paul LeoNerd Evans | 2009-07-15 | 1 | -21/+21 | 
| * | Complete change of driver internals - peek and return size but don't eat byte... | Paul LeoNerd Evans | 2008-12-10 | 1 | -3/+3 | 
| * | strdup() the terminfo keypad_local and keypad_xmit strings at construct time,... | Paul LeoNerd Evans | 2008-12-03 | 1 | -4/+34 | 
| * | Use a C99 flexible array member rather than the [0] hack | Paul LeoNerd Evans | 2008-12-02 | 1 | -1/+1 | 
| * | Cast 'term' to (non-const) char* when passing to setupterm() because terminfo... | Paul LeoNerd Evans | 2008-11-28 | 1 | -1/+3 | 
| * | Use sizeof() on assigned variables rather than types, to make code a little l... | Paul LeoNerd Evans | 2008-11-24 | 1 | -2/+2 | 
| * | Fixed another signed-vs-unsigned int comparison in driver-ti.c | Paul LeoNerd Evans | 2008-11-24 | 1 | -1/+1 | 
| * | Only print about unrecognised terminfo variable names when debugging | Paul LeoNerd Evans | 2008-11-18 | 1 | -1/+4 | 
| * | Compress trie nodes down to extent maps after loading, to save memory | Paul LeoNerd Evans | 2008-11-12 | 1 | -15/+59 | 
| * | Use a trie instead of a linear list of sequence strings in the terminfo drive... | Paul LeoNerd Evans | 2008-11-12 | 1 | -48/+151 | 
| * | Handle malloc() failures during setup of driver-ti | Paul LeoNerd Evans | 2008-11-12 | 1 | -4/+11 | 
| * | Implemented free_driver() in terminfo driver | Paul LeoNerd Evans | 2008-11-09 | 1 | -0/+5 | 
| * | Driver getkey() can return TERMKEY_RES_NONE which attempts getkey_simple() af... | Paul LeoNerd Evans | 2008-11-09 | 1 | -2/+1 | 
| * | Drivers have names | Paul LeoNerd Evans | 2008-11-08 | 1 | -0/+2 | 
| * | Pass driver_info as explicit void* parameter into driver methods | Paul LeoNerd Evans | 2008-11-08 | 1 | -5/+5 | 
| * | Recognise 'key_mouse' as an ignored terminfo key | Paul LeoNerd Evans | 2008-11-02 | 1 | -1/+3 | 
| * | Terminfo driver needs to put terminal into 'keypad_xmit' mode when starting | Paul LeoNerd Evans | 2008-11-02 | 1 | -0/+23 | 
| * | Pass the 'force' value through to getkey_simple() | Paul LeoNerd Evans | 2008-11-02 | 1 | -1/+1 | 
| * | Added many more key symbols and names + translations from terminfo | Paul LeoNerd Evans | 2008-10-10 | 1 | -0/+24 | 
| * | Binary search terminfo funcname => termkey sym conversion, rather than linear | Paul LeoNerd Evans | 2008-10-10 | 1 | -3/+18 | 
| * | Added some TODO notes about handling realloc() failures | Paul LeoNerd Evans | 2008-10-09 | 1 | -1/+1 | 
| * | Better free() tracking in constructor failure cases | Paul LeoNerd Evans | 2008-10-09 | 1 | -0/+9 | 
| * | Pass 'term' string into new_driver virtual method; have drivers sensitive to ... | Paul LeoNerd Evans | 2008-10-09 | 1 | -2/+5 | 
| * | Added initial attempt at a terminfo-driven driver | Paul LeoNerd Evans | 2008-10-08 | 1 | -0/+189 |