Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
repl: add a 'useColors' option to the repl
Browse files Browse the repository at this point in the history
This should only be minimally used, since the `terminal` value will usually be
what you are expecting. This option is specifically for the case where `terminal`
is false, but you still want colors to be output (or vice-versa).
  • Loading branch information
TooTallNate committed Mar 28, 2012
1 parent a33d1c9 commit 208b230
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 7 deletions.
4 changes: 4 additions & 0 deletions doc/api/repl.markdown
Expand Up @@ -47,6 +47,10 @@ takes the following values:
- `eval` - function that will be used to eval each given line. Defaults to
an async wrapper for `eval()`. See below for an example of a custom `eval`.

- `useColors` - a boolean which specifies whether or not the `writer` function
should output colors. If a different `writer` function is set then this does
nothing. Defaults to the repl's `terminal` value.

- `useGlobal` - if set to `true`, then the repl will use the `global` object,
instead of running scripts in a separate context. Defaults to `false`.

Expand Down
9 changes: 6 additions & 3 deletions lib/_debugger.js
Expand Up @@ -690,14 +690,14 @@ var helpMessage = 'Commands: ' + commands.map(function(group) {
}).join(',\n');


function SourceUnderline(sourceText, position, tty) {
function SourceUnderline(sourceText, position, repl) {
if (!sourceText) return '';

var head = sourceText.slice(0, position),
tail = sourceText.slice(position);

// Colourize char if stdout supports colours
if (tty && !repl.disableColors) {
if (repl.useColors) {
tail = tail.replace(/(.+?)([^\w]|$)/, '\033[32m$1\033[39m$2');
}

Expand Down Expand Up @@ -758,6 +758,9 @@ function Interface(stdin, stdout, args) {
if (parseInt(process.env['NODE_NO_READLINE'], 10)) {
opts.terminal = false;
}
if (parseInt(process.env['NODE_DISABLE_COLORS'], 10)) {
opts.useColors = false;
}
this.repl = repl.start(opts);

// Do not print useless warning
Expand Down Expand Up @@ -1134,7 +1137,7 @@ Interface.prototype.list = function(delta) {
if (current) {
line = SourceUnderline(lines[i],
client.currentSourceColumn,
self.stdout.isTTY);
self.repl);
} else {
line = lines[i];
}
Expand Down
10 changes: 6 additions & 4 deletions lib/repl.js
Expand Up @@ -58,8 +58,6 @@ function hasOwnProperty(obj, prop) {

var context;

exports.disableColors = process.env.NODE_DISABLE_COLORS ? true : false;

// hack for require.resolve("./relative") to work properly.
module.filename = path.resolve('repl');

Expand Down Expand Up @@ -163,8 +161,12 @@ function REPLServer(prompt, stream, eval, useGlobal, ignoreUndefined) {
// figure out which "writer" function to use
self.writer = options.writer || exports.writer;

if (rli.terminal && !exports.disableColors &&
self.writer === util.inspect) {
if (typeof options.useColors === 'undefined') {
options.useColors = rli.terminal;
}
self.useColors = !!options.useColors;

if (self.useColors && self.writer === util.inspect) {
// Turn on ANSI coloring.
self.writer = function(obj, showHidden, depth) {
return util.inspect(obj, showHidden, depth, true);
Expand Down
3 changes: 3 additions & 0 deletions src/node.js
Expand Up @@ -107,6 +107,9 @@
if (parseInt(process.env['NODE_NO_READLINE'], 10)) {
opts.terminal = false;
}
if (parseInt(process.env['NODE_DISABLE_COLORS'], 10)) {
opts.useColors = false;
}
var repl = Module.requireRepl().start(opts);
repl.on('exit', function() {
process.exit();
Expand Down
3 changes: 3 additions & 0 deletions test/simple/test-repl-options.js
Expand Up @@ -40,6 +40,7 @@ assert.equal(r1.rli.output, stream);
assert.equal(r1.rli.input, r1.inputStream);
assert.equal(r1.rli.output, r1.outputStream);
assert.equal(r1.rli.terminal, true);
assert.equal(r1.useColors, r1.rli.terminal);
assert.equal(r1.useGlobal, false);
assert.equal(r1.ignoreUndefined, false);

Expand All @@ -50,6 +51,7 @@ var r2 = repl.start({
input: stream,
output: stream,
terminal: false,
useColors: true,
useGlobal: true,
ignoreUndefined: true,
eval: evaler,
Expand All @@ -60,6 +62,7 @@ assert.equal(r2.rli.output, stream);
assert.equal(r2.rli.input, r2.inputStream);
assert.equal(r2.rli.output, r2.outputStream);
assert.equal(r2.rli.terminal, false);
assert.equal(r2.useColors, true);
assert.equal(r2.useGlobal, true);
assert.equal(r2.ignoreUndefined, true);
assert.equal(r2.eval, evaler);
Expand Down

0 comments on commit 208b230

Please sign in to comment.