summaryrefslogtreecommitdiff
path: root/lib/repl.js
Commit message (Expand)AuthorAgeFilesLines
* 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: make invalid RegExps throw in the REPLNathan Rajlich2012-09-211-0/+3
* 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
* 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
* ignore undefined messages in the debugger replFedor Indutny2011-11-021-2/+2
* Print out `undefined` on the REPL when returned.Nathan Rajlich2011-10-221-1/+1
* Add useGlobal flag for standard node replisaacs2011-10-211-7/+20
* Revert "Don't use a separate context for the repl."isaacs2011-10-211-29/+87
* repl: print out `undefined`Nathan Rajlich2011-10-201-1/+1
* Don't use a separate context for the repl.isaacs2011-10-181-86/+28
* Fixed a lot of jslint errors.Colton Baker2011-10-051-14/+15