summaryrefslogtreecommitdiff
path: root/lib/repl.js
Commit message (Expand)AuthorAgeFilesLines
* 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
* repl: make REPLServer inherit from EventEmitterNathan Rajlich2012-03-131-0/+5
* repl: use path.resolve() for the module.filenameNathan Rajlich2012-03-131-1/+1
* readline: ^Z (SIGSTP) handlingColton Baker2012-02-221-3/+3
* repl: add automatic loading of built-in libsBrandon Benvie2012-02-201-6/+20
* Lint all the JavaScripts.isaacs2012-02-181-20/+26
* Merge remote-tracking branch 'ry/v0.6' into v0.6-mergeisaacs2012-02-181-1/+6
|\
| * repl: make tab completion work on non-objectsNathan Rajlich2012-02-171-1/+6
* | repl: remove double calls where possibleFedor Indutny2012-02-181-1/+3
* | Readline proposal and bugfixes. Related: #2737 #2756Colton Baker2012-02-161-2/+2
* | Merge remote-tracking branch 'origin/v0.6'Ben Noordhuis2012-01-021-5/+13
|\ \ | |/
| * Fix #2034 repl message for .clear when useGlobal=trueisaacs2011-12-311-3/+11
| * repl: fix repl.start not passing the `ignoreUndefined` arg to the REPLServer ...Damon Oehlman2011-12-291-2/+2
* | preserve cursor posFedor Indutny2011-12-191-2/+2
|/
* .load, .save and local scope tab completionseebees2011-11-121-1/+152