Guest User

Untitled

a guest
Oct 20th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. repl.defineCommand('search', {
  2. help: 'search through repl history',
  3. action: function(cmd) {
  4. if (this.rli.history) this.outputStream.write(this.rli.history.filter(function(line,n) {return n && -1 !== line.indexOf(cmd)}).reverse().join("\n")+"\n");
  5. this.displayPrompt();
  6. }
  7. });
Add Comment
Please, Sign In to add comment