0.1.0 • Published 11 years ago

readline-matchtoken v0.1.0

Weekly downloads
3
License
-
Repository
github
Last release
11 years ago

readline-matchtoken build status

Adds token matching to nodejs readline and visualizes it by jumping the cursor to it à la emacs.

Installation

npm i readline-matchtoken

Demo

npm explore readline-matchtoken && npm run demo

Usage

var rmt = require('')
  , repl = require('repl');

var r = repl.start({
    prompt: "> ",
    input: process.stdin,
    output: process.stdout
  });

rmt(r.rli);

r.displayPrompt();

Although this example starts a repl, a readline interface is all that is needed for token matching to be applied.