summaryrefslogtreecommitdiff
path: root/lib/readline.js
Commit message (Expand)AuthorAgeFilesLines
* readline: handle input starting with control charsEric Schrock2013-09-231-1/+1
* readline: pause stdin before turning off terminal raw modeDaniel Chatfield2013-08-171-1/+1
* readline: make `ctrl + L` clear the screenYuan Chuan2013-06-171-0/+6
* events: add check for listeners lengthTrevor Norris2013-03-011-4/+4
* lintisaacs2013-01-291-1/+1
* readline: treat bare \r as a line endingisaacs2013-01-291-4/+26
* readline: make \r\n emit one 'line' eventBen Noordhuis2013-01-291-3/+8
* readline: use a "string_decoder" to parse "keypress" eventsNathan Rajlich2012-11-061-3/+5
* readline: don't emit "line" events with a trailing '\n' charNathan Rajlich2012-11-061-1/+1
* repl: call resume() after setRawMode()Bert Belder2012-10-241-1/+2
* Merge remote-tracking branch 'ry/v0.8'isaacs2012-07-261-10/+26
|\
| * readline: Remove event listeners on closeisaacs2012-07-241-10/+26
* | Merge remote-tracking branch 'ry/v0.8' into v0.8-mergeisaacs2012-07-111-29/+28
|\ \ | |/
| * readline: don't use Function#call()Nathan Rajlich2012-07-061-4/+3
| * Forgotten commit: add arguments to handleGroupJonas Westerlund2012-07-061-3/+3
| * Move function declaration to top-levelJonas Westerlund2012-07-061-28/+28
| * readline: fix for unicode promptsTim Macfarlane2012-07-061-1/+1
* | readline: Use one history item for reentered lineVladimir Beloborodov2012-07-051-4/+6
|/
* domain: the EventEmitter constructor is now always called in nodecoreAndreas Madsen2012-06-151-2/+2
* readline: don't cache the "keypress" listenersNathan Rajlich2012-06-141-4/+2
* lintisaacs2012-06-111-3/+4
* readline: explicitly disable and re-enable "raw mode" on Ctrl+ZNathan Rajlich2012-05-211-0/+5
* readline: move the "setRawMode" logic into a private functionNathan Rajlich2012-05-211-6/+9
* readline: remove unused vars in _ttyWriteKyle Robinson Young2012-04-211-1/+0
* readline: _normalWrite() doesn't take a key modifier argKyle Robinson Young2012-04-181-1/+1
* readline: change char to ch to avoid reserved wordKyle Robinson Young2012-04-181-4/+4
* readline: re-add the Interface#close() method; rename "end" to "close"Nathan Rajlich2012-04-171-13/+17
* readline: use StringDecoder for decoding "normal" dataNathan Rajlich2012-04-061-8/+15
* readline: buffer data to only emit 'line' on '\n'Nathan Friedly2012-04-061-4/+15
* tty, readline: fix style errorsBen Noordhuis2012-03-291-2/+2
* repl: make ^D emit an 'end' event on the readline instanceNathan Rajlich2012-03-271-0/+4
* readline: migrate ansi/vt100 logic from tty to readlineNathan Rajlich2012-03-261-40/+394
* readline: fix for terminals that insert newlines automaticallyAlex Kocharin2012-03-261-2/+7
* lint readline.js - single-quotes preferredisaacs2012-03-201-2/+2
* readline: row-agnostic multiline readline implementationAlex Kocharin2012-03-201-37/+92
* Revert "readline: add multiline support"Nathan Rajlich2012-03-201-78/+8
* readline: ignore stray escape sequenceColton Baker2012-03-071-0/+3
* readline: add multiline supportRlidwka2012-03-061-8/+78
* readline: ^Z (SIGSTP) handlingColton Baker2012-02-221-1/+3
* Readline proposal and bugfixes. Related: #2737 #2756Colton Baker2012-02-161-32/+29
* preserve cursor posFedor Indutny2011-12-191-2/+2
* Fixes #2052. Readline get win cols correctlyRyan Dahl2011-11-081-2/+2
* doc: fix linksMaciej MaƂecki2011-11-011-1/+1
* Fixed a lot of jslint errors.Colton Baker2011-10-051-1/+2
* Bind uv_tty_get_winsizeRyan Dahl2011-09-271-2/+2
* readline: handle null completer graciouslyBen Noordhuis2011-09-141-3/+7
* [debugger] call silent resume in debugEval to prevent incorrect cursor positi...Fedor Indutny2011-09-091-2/+1
* [repl, readline] refactor async completion and executionFedor Indutny2011-09-091-2/+2
* [readline, repl] Fix completion grouping, fix parens eval resultsFedor Indutny2011-09-091-1/+1
* [repl, readline] async interfaceFedor Indutny2011-09-091-54/+66