File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -551,8 +551,6 @@ The `<...>` notation means the argument.
551551 * Step in. Resume the program until next breakable point.
552552* ` s[tep] <n> `
553553 * Step in, resume the program at ` <n> ` th breakable point.
554- * ` s[tep] into <name> ` or ` s[tep] into /regexp/ `
555- * Stop at the beggining of method ` <name> ` or the name matched to ` /regexp/ `
556554* ` n[ext] `
557555 * Step over. Resume the program until next line.
558556* ` n[ext] <n> `
@@ -561,6 +559,13 @@ The `<...>` notation means the argument.
561559 * Finish this frame. Resume the program until the current frame is finished.
562560* ` fin[ish] <n> `
563561 * Finish ` <n> ` th frames.
562+ * ` u[ntil] `
563+ * Similar to ` next ` command, but only stop later lines or the end of the current frame.
564+ * Similar to gdb's ` advance ` command.
565+ * `u[ ntil] <[ file:] line>
566+ * Run til the program reaches given location or the end of the current frame.
567+ * `u[ ntil] <name >
568+ * Run til the program invokes a method ` <name> ` . ` <name> ` can be a regexp with ` /name/ ` .
564569* ` c[ontinue] `
565570 * Resume the program.
566571* ` q[uit] ` or ` Ctrl-D `
You can’t perform that action at this time.
0 commit comments