| Commit message (Expand) | Author | Age | Files | Lines |
* | libbb: consolidate the code to set termios unbuffered mode | Denys Vlasenko | 2017-01-11 | 1 | -1/+1 |
* | lineedit: simplify code a bit | Denys Vlasenko | 2016-11-28 | 1 | -16/+14 |
* | lineedit: fix two bugs in SIGWINCH signal handling | Denys Vlasenko | 2016-11-27 | 1 | -29/+41 |
* | ash,hush: make ^C in interactive mode visually much closer to bash behavior | Denys Vlasenko | 2016-11-25 | 1 | -1/+1 |
* | lineedit: fix handling of repeating Alt-b, Alt-f, Alt-d, Alt-Backspace | Rostislav Skudnov | 2016-11-24 | 1 | -42/+18 |
* | lineedit: fix completion with applet names. closes 9361 | Denys Vlasenko | 2016-10-24 | 1 | -1/+1 |
* | lineedit: trivial codeshrink for vi-mode | Natanael Copa | 2016-08-14 | 1 | -8/+14 |
* | Rewrite iteration through applet names to save a few bytes | Ron Yorston | 2016-04-15 | 1 | -4/+3 |
* | lineedit: search applets as well as PATH for tab completion | Ron Yorston | 2015-10-30 | 1 | -1/+16 |
* | libbb: introduce and use is_prefixed_with() | Denys Vlasenko | 2015-03-12 | 1 | -8/+9 |
* | libpwdgrp: use getpwent() instead of getpwent_r() | Denys Vlasenko | 2015-02-07 | 1 | -8/+5 |
* | lineedit: don't block when looking for escape sequence in vi-mode | Ron Yorston | 2014-12-15 | 1 | -1/+1 |
* | lineedit: don't fall back to simple line input if tty is in raw mode | Denys Vlasenko | 2014-12-10 | 1 | -2/+6 |
* | lineedit: fix trivial build failure | Denys Vlasenko | 2014-01-10 | 1 | -0/+2 |
* | lineedit: use unicode_strwidth instead of unicode_strlen | Denys Vlasenko | 2013-08-20 | 1 | -3/+3 |
* | lineedit: fix multi-line PS1 handling: calculate PS1 length from last \n | Denys Vlasenko | 2013-08-19 | 1 | -14/+30 |
* | lineedit: improve Unicode handling (still buggy though) | Denys Vlasenko | 2013-08-19 | 1 | -7/+23 |
* | ash,hush: history builtin | Flemming Madsen | 2013-04-07 | 1 | -2/+14 |
* | lineedit: \W on "/bin" should show "bin", not "/bin" | Denys Vlasenko | 2013-03-29 | 1 | -1/+1 |
* | lineedit: implement \T \t \A \@ prompts escapes, fix \W escape, drop \! | Denys Vlasenko | 2013-03-29 | 1 | -37/+47 |
* | lineedit: add handling of \H in prompt | Denys Vlasenko | 2013-03-28 | 1 | -5/+45 |
* | lineedit: initialize delptr | Shawn J. Goff | 2013-02-27 | 1 | -0/+1 |
* | lineedit: in !EDITING config, return -1 on fgets error | Denys Vlasenko | 2012-09-27 | 1 | -1/+2 |
* | lineedit: fix Alt-D when cursor==0 | Cliff Frey | 2012-08-07 | 1 | -3/+3 |
* | lineedit: histfile can get emptied when CONFIG_FEATURE_EDITING_SAVE_ON_EXIT=y | Dennis Groenen | 2012-04-26 | 1 | -4/+2 |
* | whitespace fixes | Denys Vlasenko | 2012-04-20 | 1 | -1/+1 |
* | shell_builtin_read: set cc[VMIN] to 1; lineedit: don't clear c_cc[VINTR] | Denys Vlasenko | 2012-01-15 | 1 | -6/+9 |
* | lineedit: fix build failure | Denys Vlasenko | 2011-11-04 | 1 | -1/+3 |
* | lineedit: add support for M-b, M-f, M-d, M-Backspace | Denys Vlasenko | 2011-11-03 | 1 | -0/+40 |
* | lineedit: remove SAVE_HISTORY bit, ->hist_file can be used as indicator | Denys Vlasenko | 2011-09-04 | 1 | -5/+1 |
* | lineedit: add support for history saving on exit | Denys Vlasenko | 2011-09-04 | 1 | -6/+62 |
* | lineedit: fix atomic replace of history file; hush: fix $HISTFILE handling | Denys Vlasenko | 2011-09-04 | 1 | -2/+2 |
* | libbb/lineedit: implement optional Ctrl-R history search | Denys Vlasenko | 2011-07-11 | 1 | -12/+153 |
* | lineedit: fix rare SEGV; mark a few FIXMEs | Alexey Fomenko | 2011-05-20 | 1 | -9/+15 |
* | small fix for HISTFILESIZE | Denys Vlasenko | 2011-03-31 | 1 | -0/+1 |
* | ash,hush: optional support for $HISTFILESIZE. | Denys Vlasenko | 2011-03-31 | 1 | -15/+29 |
* | lineedit: fixes for CONFIG_UNICODE_USING_LOCALE=y | Denys Vlasenko | 2011-03-27 | 1 | -45/+62 |
* | ash: fix TMOUT not restoring tty attributes | Denys Vlasenko | 2011-02-08 | 1 | -7/+5 |
* | lineedit: fix tab-completion of filenames with spaces | Mike Shal | 2010-11-22 | 1 | -22/+45 |
* | lineedit: create history files with mode 0600 | Wolfram Sang | 2010-11-15 | 1 | -5/+7 |
* | *: use _exit() in sighandlers; showkey: do not use exit-thru-sighandler | Marek Polacek | 2010-10-28 | 1 | -9/+11 |
* | lineedit: do not hang on error, but return error indicator. | Denys Vlasenko | 2010-09-07 | 1 | -6/+6 |
* | lineedit: on tab completion, show filenames obly in all cases (bash compat) | Denys Vlasenko | 2010-09-03 | 1 | -13/+9 |
* | lineedit: allocate matchBuf only temporarily: saves MAX_LINELEN bytes | Denys Vlasenko | 2010-09-03 | 1 | -45/+48 |
* | lineedit: de-indent large block in input_tab. No logic changes. | Denys Vlasenko | 2010-09-03 | 1 | -131/+131 |
* | lineedit: rename tmp -> chosen_match; small code shrink | Denys Vlasenko | 2010-09-03 | 1 | -26/+23 |
* | lineedit: stop using permanent int_buf[] (16k!): allocate it | Denys Vlasenko | 2010-09-03 | 1 | -14/+13 |
* | lineedit: remove pos_buf[] array (up to 16k!); fix compat bugs | Denys Vlasenko | 2010-09-03 | 1 | -83/+49 |
* | lineedit: return prefix len from tab completion helpers | Denys Vlasenko | 2010-09-03 | 1 | -36/+50 |
* | lineedit: clean up tab completion code (variable reuse, comments) | Denys Vlasenko | 2010-09-03 | 1 | -69/+85 |