/jEdit/tags/jedit-4-2-pre14/bsh/commands/show.bsh

# · Unknown · 14 lines · 11 code · 3 blank · 0 comment · 0 complexity · bfa7a7725f5f7386d0577901e667d8e9 MD5 · raw file

  1. /**
  2. Toggle on or off displaying the results of expressions (off by default).
  3. When show mode is on bsh will print() the value returned by each expression
  4. you type on the command line.
  5. */
  6. bsh.help.show = "usage: show()";
  7. show() {
  8. if ( bsh.show == void )
  9. bsh.show = false;
  10. bsh.show = !bsh.show;
  11. }