-
-
Notifications
You must be signed in to change notification settings - Fork 645
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add force-out support. #2800
Add force-out support. #2800
Conversation
Adding the option to force out of a debugging operation. Also skips instrumented functions lower in the call stack. Already implemented at cider-nrepl level.
@bbatsov Are the tests failure due to me or due to me or jorgenschaefer/emacs-buttercup#122? |
cider-debug.el
Outdated
@@ -202,6 +202,7 @@ Can be toggled at any time with `\\[cider-debug-toggle-locals]'." | |||
(?n "next" "next") | |||
(?i "in" "in") | |||
(?o "out" "out") | |||
(?O "out" nil) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As this is what people see in the menu, I guess we should use different wording here - otherwise it's not clear how it differs from the standard "out".
I think we also list the debugger commands in its manual with some extra explanations. |
@bbatsov What do you mean? The big O command is already in the docs. |
My bad. I didn't notice this. Thanks! |
Adding the option to force out of a debugging operation. Also skips
instrumented functions lower in the call stack. Already implemented
at cider-nrepl level.
Replace this placeholder text with a summary of the changes in your PR.
The more detailed you are, the better.
Before submitting the PR make sure the following things have been done (and denote this
by checking the relevant checkboxes):
make test
)make lint
) which is based onelisp-lint
and includescheckdoc
, check-declare, packaging metadata, indentation, and trailing whitespace checks.Thanks!
If you're just starting out to hack on CIDER you might find this section of its
manual extremely useful.