summaryrefslogtreecommitdiff
path: root/lib/readline.js
AgeCommit message (Expand)AuthorFilesLines
2014-07-31Revert "repl: fix overwrite for this._prompt"Fedor Indutny1-7/+1
2014-07-29repl: fix overwrite for this._promptYazhong Liu1-1/+7
2014-06-11readline: remove doubled case.Roman Klauke1-4/+0
2014-05-17readline: fixes scoping bugDan Kaplun1-10/+9
2014-05-13readline: implements keypress bufferingDan Kaplun1-181/+191
2014-05-12readline: fix close event of readline.Interface()Yazhong Liu1-5/+9
2014-03-12readline: consider newlines for cursor positionYazhong Liu1-1/+7
2014-02-17readline: fix `line` event, if input emit 'end'Yazhong Liu1-0/+8
2013-09-24Merge remote-tracking branch 'upstream/v0.10'Timothy J Fontaine1-1/+1
2013-09-23readline: handle input starting with control charsEric Schrock1-1/+1
2013-09-04stream: return this from pause()/resume()isaacs1-0/+2
2013-08-19fixes #6031 spelling errorsMatthew Aynalem1-1/+1
2013-08-17readline: pause stdin before turning off terminal raw modeDaniel Chatfield1-1/+1
2013-08-17readline: pause stdin before turning off terminal raw modeDaniel Chatfield1-1/+1
2013-08-15lib: remove unused variables and functionsBrian White1-3/+0
2013-08-01src: Replace macros with util functionsisaacs1-12/+12
2013-07-24lib: macro-ify type checksBen Noordhuis1-12/+12
2013-06-25Merge remote-tracking branch 'ry/v0.10' into masterisaacs1-0/+6
2013-06-17readline: strip ctrl chars for prompt width calcKrzysztof Chrapka1-4/+19
2013-06-17readline: make `ctrl + L` clear the screenYuan Chuan1-0/+6
2013-03-15readline: handle wide characters properlyNao Iizuka1-16/+144
2013-03-01events: add check for listeners lengthTrevor Norris1-4/+4
2013-01-29lintisaacs1-1/+1
2013-01-29readline: treat bare \r as a line endingisaacs1-4/+26
2013-01-29readline: make \r\n emit one 'line' eventBen Noordhuis1-3/+8
2012-11-06readline: use a "string_decoder" to parse "keypress" eventsNathan Rajlich1-3/+5
2012-11-06readline: don't emit "line" events with a trailing '\n' charNathan Rajlich1-1/+1
2012-10-24repl: call resume() after setRawMode()Bert Belder1-1/+2
2012-07-26Merge remote-tracking branch 'ry/v0.8'isaacs1-10/+26
2012-07-24readline: Remove event listeners on closeisaacs1-10/+26
2012-07-11Merge remote-tracking branch 'ry/v0.8' into v0.8-mergeisaacs1-29/+28
2012-07-06readline: don't use Function#call()Nathan Rajlich1-4/+3
2012-07-06Forgotten commit: add arguments to handleGroupJonas Westerlund1-3/+3
2012-07-06Move function declaration to top-levelJonas Westerlund1-28/+28
2012-07-06readline: fix for unicode promptsTim Macfarlane1-1/+1
2012-07-05readline: Use one history item for reentered lineVladimir Beloborodov1-4/+6
2012-06-15domain: the EventEmitter constructor is now always called in nodecoreAndreas Madsen1-2/+2
2012-06-14readline: don't cache the "keypress" listenersNathan Rajlich1-4/+2
2012-06-11lintisaacs1-3/+4
2012-05-21readline: explicitly disable and re-enable "raw mode" on Ctrl+ZNathan Rajlich1-0/+5
2012-05-21readline: move the "setRawMode" logic into a private functionNathan Rajlich1-6/+9
2012-04-21readline: remove unused vars in _ttyWriteKyle Robinson Young1-1/+0
2012-04-18readline: _normalWrite() doesn't take a key modifier argKyle Robinson Young1-1/+1
2012-04-18readline: change char to ch to avoid reserved wordKyle Robinson Young1-4/+4
2012-04-17readline: re-add the Interface#close() method; rename "end" to "close"Nathan Rajlich1-13/+17
2012-04-06readline: use StringDecoder for decoding "normal" dataNathan Rajlich1-8/+15
2012-04-06readline: buffer data to only emit 'line' on '\n'Nathan Friedly1-4/+15
2012-03-29tty, readline: fix style errorsBen Noordhuis1-2/+2
2012-03-27repl: make ^D emit an 'end' event on the readline instanceNathan Rajlich1-0/+4
2012-03-26readline: migrate ansi/vt100 logic from tty to readlineNathan Rajlich1-40/+394