summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2016-04-05 17:17:33 -0700
committerRich Trott <rtrott@gmail.com>2016-04-14 10:53:07 -0700
commit1df84f4f75843ad01d95dc55d63ba30b2b69fbd4 (patch)
tree0334d5a568202fca7c60ebfdcbf2a6ea001ef86d /doc
parentb68827b1d1c20d0f3e0592734e845b87967a72bc (diff)
downloadandroid-node-v8-1df84f4f75843ad01d95dc55d63ba30b2b69fbd4.tar.gz
android-node-v8-1df84f4f75843ad01d95dc55d63ba30b2b69fbd4.tar.bz2
android-node-v8-1df84f4f75843ad01d95dc55d63ba30b2b69fbd4.zip
debugger: run last command on presssing enter
PR-URL: https://github.com/nodejs/node/pull/6090 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: bnoordhuis - Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Claudio Rodriguez <cjrodr@yahoo.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Fixes: https://github.com/nodejs/node/issues/2895
Diffstat (limited to 'doc')
-rw-r--r--doc/api/debugger.markdown3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/api/debugger.markdown b/doc/api/debugger.markdown
index 2bbaf9049e..400192ee00 100644
--- a/doc/api/debugger.markdown
+++ b/doc/api/debugger.markdown
@@ -84,6 +84,9 @@ The `repl` command allows code to be evaluated remotely. The `next` command
steps over to the next line. Type `help` to see what other commands are
available.
+Pressing `enter` without typing a command will repeat the previous debugger
+command.
+
## Watchers
It is possible to watch expression and variable values while debugging. On