summaryrefslogtreecommitdiff
path: root/lib/repl.js
Commit message (Expand)AuthorAgeFilesLines
* repl: do not insert duplicates into completionsMaciej Małecki2013-11-111-1/+1
* repl: fix JSON.parse error checkBrian White2013-05-301-2/+1
* repl: use more readable RegExp syntax for spacesNathan Rajlich2013-03-301-1/+1
* repl: isSyntaxError() catches "strict mode" errorsNathan Rajlich2013-03-301-0/+2
* make repl compatible with domainsDave Olszewski2013-03-031-1/+7
* repl: fix how to module requiring in code commentRyunosuke SATO2013-01-161-1/+1
* repl: fix lintNathan Rajlich2013-01-121-3/+3
* repl: make built-in modules available by defaultFelix Böhm2013-01-121-10/+18
* REPL: fix floating point number parsingNirk Niggler2013-01-031-1/+1
* repl: allow overriding builtinsBen Noordhuis2013-01-031-8/+3
* repl: remove 'repl' from automatic loading libsRyunosuke SATO2012-12-261-1/+1
* repl: add 'domain' to automatic loading libsRyunosuke SATO2012-12-261-2/+2
* repl: don't touch `require.cache`Nathan Rajlich2012-12-211-1/+0
* Add 'stream' as a native module in replisaacs2012-12-131-2/+2
* repl: don't interpret floating point numbersBen Noordhuis2012-11-101-1/+1
* Merge remote-tracking branch 'origin/v0.8'Nathan Rajlich2012-10-131-25/+27
|\
| * repl: ensure each REPL instance gets its own "context"Nathan Rajlich2012-10-121-14/+9
| * repl: move "isSyntaxError()" definition to the bottomNathan Rajlich2012-10-051-12/+18
| * repl: make "end of input" JSON.parse() errors throw in the REPLNathan Rajlich2012-10-011-1/+1
| * repl: make invalid RegExp modifiers throw in the REPLNathan Rajlich2012-09-301-0/+1
* | repl: dynamically lookup the require extensions for tab completeNathan Rajlich2012-10-071-5/+1
* | Merge remote-tracking branch 'ry/v0.8' into v0.8-mergeisaacs2012-09-281-0/+3
|\ \ | |/
| * repl: make invalid RegExps throw in the REPLNathan Rajlich2012-09-211-0/+3
* | repl: create a new Console instance for the repl when "useGlobal" is offNathan Rajlich2012-08-241-6/+7
* | Merge remote-tracking branch 'ry/v0.8' into v0.8-mergeisaacs2012-07-111-36/+32
|\ \ | |/
| * Move function declaration out of conditionalJonas Westerlund2012-07-061-35/+30
| * repl: fix passing an empty line inserting "undefined" into the bufferNathan Rajlich2012-07-041-0/+1
| * repl: fix crashes when buffering commandMaciej Małecki2012-07-041-1/+1
* | repl: fix buffer clearing after npm commandBen Noordhuis2012-06-231-1/+1
|/
* domain: the EventEmitter constructor is now always called in nodecoreAndreas Madsen2012-06-151-3/+6
* Warn about running npm in the replisaacs2012-06-051-0/+9
* repl: preserve the cursor when redisplaying the prompt on SIGCONTNathan Rajlich2012-05-211-1/+1
* repl: make tab completion read up the prototype of "global"Nathan Rajlich2012-04-251-0/+4
* repl: use Object.getPrototypeOf on functions for tab complete()Nathan Rajlich2012-04-211-1/+1
* repl: update the `repl` for the new `readline` behaviorNathan Rajlich2012-04-171-5/+3
* repl: make the completer use newlinesNathan Rajlich2012-04-061-1/+1
* repl: don't write a newline on the readline 'end' eventNathan Rajlich2012-03-281-1/+0
* repl: add a 'useColors' option to the replNathan Rajlich2012-03-271-4/+6
* repl: add a 'writer' option to the replNathan Rajlich2012-03-271-5/+9
* repl: ensure that 'repl.ignoreUndefined' is a booleanNathan Rajlich2012-03-271-1/+2
* repl: ensure that 'repl.useGlobal' is a booleanNathan Rajlich2012-03-271-2/+2
* repl: make ^D emit an 'end' event on the readline instanceNathan Rajlich2012-03-271-0/+5
* readline: migrate ansi/vt100 logic from tty to readlineNathan Rajlich2012-03-261-17/+45
* readline: row-agnostic multiline readline implementationAlex Kocharin2012-03-201-5/+3
* repl: fix space autocompletion bugAlex Kocharin2012-03-201-0/+2
* debugger: remove 'repl' command from builtinLibsFedor Indutny2012-03-191-3/+3
* repl: better SIGINT handling behaviorNathan Rajlich2012-03-131-9/+11
* repl: remove redundant check of rli.rine.lengthNathan Rajlich2012-03-131-2/+1
* repl: make sure the REPL always flushes with a newlineNathan Rajlich2012-03-131-3/+3
* repl: make REPLServer emit an "exit" eventNathan Rajlich2012-03-131-1/+4