README.md in pry-moves-0.1.6 vs README.md in pry-moves-0.1.7

- old
+ new

@@ -8,11 +8,13 @@ * For non-rails (without auto-require), add to your script: `require 'pry-moves'` ## Commands: * `n` - **next** line in current frame, including block lines (moving to next line goes as naturally expected) + * `nn` - **next** line in current frame, skipping block lines * `s` - **step** into function execution * `s method_name` - step into method `method_name` (For example from `User.new.method_name`). Partial name match supported. + * `s +` - step into function, including hidden frames * `f` - **finish** execution of current frame (block or method) and stop at next line on higher level * `c` - **continue** * `bt` - show latest 5 lines from backtrace * `bt 10` - latest 10 lines * `bt all` - full backtrace