sob

simple output bar
git clone git://git.codemadness.org/sob
Log | Files | Refs | README | LICENSE

DateCommit messageAuthorFiles+-
2019-11-22 16:00code-style and change EXIT_* back to the standard codeHiltjo Posthuma1+104-105
2019-11-22 15:58update LICENSE (MIT->ISC) and README tweaksHiltjo Posthuma2+22-22
2019-11-22 15:57improve MakefileHiltjo Posthuma2+61-54
2015-09-04 09:34remove unneeded (wrong) line, timeval is already clearedHiltjo Posthuma1+0-1
2014-11-09 14:59scripts/history: show in reverse order (newest first).Hiltjo Posthuma1+2-2
2014-11-09 14:23scripts: update complete_nickHiltjo Posthuma1+13-9
2014-10-31 13:37complete_nick: be compatible with default ii out formatHiltjo Posthuma1+14-14
2014-10-31 13:36config: add emacs word-movement keybind (alt+f, alt+b)Hiltjo Posthuma1+3-0
2014-10-31 13:36line_cursor_move: more portable, dont use c99 size_t format stringHiltjo Posthuma1+1-1
2014-10-31 13:35draw slightly more efficient, hide cursor firstHiltjo Posthuma1+1-1
2014-10-26 19:10update TODOHiltjo Posthuma1+0-1
2014-10-26 19:05various improvements and cleanup:Hiltjo Posthuma3+139-215
2014-10-26 14:35improve readfd and writefd (blocking)Hiltjo Posthuma1+39-16
2014-10-26 12:31config: ctrl-c is special-case, dont define it in configHiltjo Posthuma1+0-1
2014-10-26 12:30README: add more usage infoHiltjo Posthuma1+39-0
2014-10-26 12:30restore term attributes on SIGINT (Ctrl-c) properlyHiltjo Posthuma1+4-2
2014-10-26 12:01default to character width 1Hiltjo Posthuma1+1-1
2014-10-25 15:28POSIX.1-2001 defines the value of EWOULDBLOCK and EAGAIN can be differentHiltjo Posthuma1+2-2
2014-10-25 11:15update TODOHiltjo Posthuma1+4-1
2014-10-25 11:12improve tcgetattr and setup()Hiltjo Posthuma1+36-21
2014-10-25 11:12default to cols 79, rows 24Hiltjo Posthuma1+2-1
2014-10-25 10:24config.mk: wextra for release too, x_open_source=700 for POSIX 2008Hiltjo Posthuma1+2-2
2014-10-25 10:23complete_nick: if there is one match, just print itHiltjo Posthuma1+6-1
2014-10-25 10:22fix readfd check, below case !r was never executedHiltjo Posthuma1+1-1
2014-10-25 10:22use ssize_t for read() and write(), styleHiltjo Posthuma1+75-76
2014-10-25 10:21copy word cursor: null terminate properly (off by one).Hiltjo Posthuma1+1-1
2014-10-24 22:46signed, unsigned fixHiltjo Posthuma1+8-6
2014-10-24 22:35scripts/history: dont use histfile var (history for shells)Hiltjo Posthuma1+14-7
2014-10-24 22:35sob scripts: dont show errors in cliHiltjo Posthuma1+4-4
2014-10-24 22:30simplify, also dont call cleanup twice on sigtermHiltjo Posthuma1+4-13
2014-10-24 22:25config.mk: xopen_source=500 is enoughHiltjo Posthuma1+1-1
2014-10-24 22:12restore terminal attribute before reopen with initial input just to be sureHiltjo Posthuma1+3-0
2014-10-24 21:40config: c-c is exitHiltjo Posthuma1+1-0
2014-10-24 21:40fix build on openbsd, bump versionHiltjo Posthuma1+2-2
2014-10-24 21:40small code-style improvementHiltjo Posthuma1+7-6
2014-10-24 21:39increase line buffer sizeHiltjo Posthuma1+7-7
2014-10-24 21:37remove -i and -l flagHiltjo Posthuma2+50-25
2014-10-24 21:35rework read/write fd code, sleep when there are too much timeoutsHiltjo Posthuma1+76-38
2014-10-13 00:30separate dirtylen from line so its not clearedHiltjo Posthuma1+4-4
2014-10-12 23:58remove leftover strlcpy and util stuffHiltjo Posthuma2+2-4
2014-10-12 22:39scripts: resize: always resize the proper paneHiltjo Posthuma1+2-1
2014-10-12 22:31remove strlcpy, it's unusedHiltjo Posthuma2+0-52
2014-10-12 22:07improve handleinput: match escape (0x1b) and control chars (includes 127==del)Hiltjo Posthuma1+3-3
2014-10-12 22:05add total length argument to pipe callback...Hiltjo Posthuma1+17-11
2014-10-12 22:05optimize line_draw, reduces flicker in some terminalsHiltjo Posthuma1+28-4
2014-10-12 22:00config.h: add another del key (in linux console)Hiltjo Posthuma1+2-0
2014-10-12 21:59make utf check a macro: ISUTF8Hiltjo Posthuma1+6-5
2014-10-11 00:46config.mk: remove ncurses library to linkHiltjo Posthuma1+1-1
2014-10-11 00:46code style: wrap to max 79 charsHiltjo Posthuma1+6-3
2014-10-11 00:17update TODOHiltjo Posthuma1+0-14
2014-10-10 22:54simplify line_cursor_move a bitHiltjo Posthuma1+4-5
2014-10-10 22:45fix delwordcursor and do some extra checksHiltjo Posthuma1+9-9
2014-10-10 21:59scripts: remove newline, else this would "autoaccept" the inputHiltjo Posthuma3+3-3
2014-10-10 21:56manpage: change -l to -iHiltjo Posthuma1+2-2
2014-10-10 21:54make input handling more flexibleHiltjo Posthuma1+58-56
2014-10-10 20:59improve handleinput: dont handle rest of input if escape code is unhandledHiltjo Posthuma1+7-3
2014-10-10 20:36improve handleinput for reads containing multiple keysHiltjo Posthuma1+28-15
2014-10-10 20:05handle > 0 readsHiltjo Posthuma1+1-3
2014-10-10 20:03remove debuginputHiltjo Posthuma1+0-13
2014-10-10 20:02fflush after clearHiltjo Posthuma1+1-0
2014-10-10 20:02simplify and reduce a drawHiltjo Posthuma1+6-17
2014-10-10 19:03make: enable release cflags and ldflagsHiltjo Posthuma1+4-4
2014-10-10 19:03remove unused macrosHiltjo Posthuma1+0-2
2014-10-10 18:57change wrong commentHiltjo Posthuma1+1-1
2014-10-10 18:57wchar: make glibc happyHiltjo Posthuma2+5-7
2014-10-10 18:47add support for characters that are bigger than 1 columnHiltjo Posthuma2+67-15
2014-10-10 14:08config: add a comment about the prompt formatHiltjo Posthuma1+2-0
2014-10-10 14:05consistencyHiltjo Posthuma1+8-6
2014-10-04 12:36fix delcharnext string lengthHiltjo Posthuma1+1-0
2014-10-04 12:36do some extra checks to be safeHiltjo Posthuma1+15-6
2014-10-04 01:32cast to size_t and use size_t specified for format stringHiltjo Posthuma1+2-2
2014-10-04 01:32use STDIN_FILENO, fd_in was uninitializedHiltjo Posthuma1+2-2
2014-10-03 23:53scripts/history: fix file testHiltjo Posthuma1+2-2
2014-10-03 23:49update TODOHiltjo Posthuma1+11-3
2014-10-03 23:49support utf8 input and outputHiltjo Posthuma1+255-119
2014-10-03 23:48fix arrow keys in csi-modeHiltjo Posthuma1+20-9
2014-10-02 21:32fix crash with memmove and cols == 0Hiltjo Posthuma1+6-4
2014-10-02 20:55rework some things:Hiltjo Posthuma5+318-227
2014-10-02 11:27consistency: make resize a bindable functionHiltjo Posthuma4+14-14
2014-10-02 01:31code styleHiltjo Posthuma2+11-11
2014-10-02 01:28move some functions to make it more clear how to configure custom functions.Hiltjo Posthuma2+43-39
2014-10-02 01:19remove delwordcursor keybindHiltjo Posthuma1+0-1
2014-10-02 01:19dont double close fd_out in some caseHiltjo Posthuma1+5-2
2014-10-02 01:07update TODOHiltjo Posthuma1+2-0
2014-10-02 01:05update for irc + iiHiltjo Posthuma4+34-5
2014-10-02 01:01export line and write str as envHiltjo Posthuma1+2-0
2014-10-02 01:01terminate buffer if size = 0Hiltjo Posthuma1+1-0
2014-10-01 23:15remove id parameterHiltjo Posthuma4+2-12
2014-10-01 23:14config: use scripts in $HOMEHiltjo Posthuma1+3-4
2014-10-01 22:45initial versionHiltjo Posthuma14+965-0