From 5735a994e02a3215051f3cc784dc885681acf948 Mon Sep 17 00:00:00 2001 From: Michael Fiano Date: Sun, 7 Oct 2018 21:50:46 -0400 Subject: [PATCH] Do not display debugger or inspector buffers in a popup window. --- modules/lang/common-lisp/config.el | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/modules/lang/common-lisp/config.el b/modules/lang/common-lisp/config.el index 943bcb001..c844bc6e1 100644 --- a/modules/lang/common-lisp/config.el +++ b/modules/lang/common-lisp/config.el @@ -7,10 +7,12 @@ (set-popup-rules! '(("^\\*sly-mrepl" :vslot 2 :quit nil :ttl nil) - ("^\\*sly-db" :vslot 3 :quit nil :ttl nil) - ("^\\*sly-compilation" :vslot 4 :ttl nil) - ("^\\*sly-inspector" :vslot 5 :ttl nil) - ("^\\*sly-traces" :vslot 6 :ttl nil))) + ("^\\*sly-compilation" :vslot 3 :ttl nil) + ("^\\*sly-traces" :vslot 4 :ttl nil))) + + ;; Do not display debugger or inspector buffers in a popup window. + ;; These buffers are meant to be displayed with sufficient vertical space. + (set-popup-rule! "^\\*sly-\\(db\\|inspector\\)" :ignore t) (set-repl-handler! 'lisp-mode #'sly-mrepl) (set-eval-handler! 'lisp-mode #'sly-eval-region)