diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2014-05-31 20:54:22 +0200 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2014-05-31 20:57:37 +0200 |
commit | 9ff03facb2ea1e0a6b320f603dfd7e0e787d9593 (patch) | |
tree | 41ec3f148b32692ecf0604c92749dc505fb68a9e /doc | |
parent | 30c3c30774fc16e5ec342bc5eeca21c277a56107 (diff) | |
download | geiser-guile-9ff03facb2ea1e0a6b320f603dfd7e0e787d9593.tar.gz geiser-guile-9ff03facb2ea1e0a6b320f603dfd7e0e787d9593.tar.bz2 |
Finer control of debugging window popups
It's now possible to control whether we jump to the debug window on
evaluation errors (geiser-debug-jump-to-debug-p) and whether we show it
all (geiser-debug-show-debug-p).
Diffstat (limited to 'doc')
-rw-r--r-- | doc/parens.texi | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/parens.texi b/doc/parens.texi index 2c486ce..9b146e9 100644 --- a/doc/parens.texi +++ b/doc/parens.texi @@ -508,6 +508,12 @@ to said exception type. Both the error and exception link faces are customizable (@code{geiser-font-lock-error-link} and @code{geiser-font-lock-doc-link}). +By default, Geiser will tele-transport your pointer to the debug buffer: +if you prefer to stay in the source buffer, set +@code{geiser-debug-jump-to-debug-p} to nil. And if, in addition, you +don't even want to see the error trace, customize +@code{geiser-debug-show-debug-p}, again, to nil. + On the other hand, Guile's reaction to evaluation errors is different: it enters the debugger in its REPL. Accordingly, the REPL buffer will pop up if your evaluation fails in a Guile file, and the error message |