fix(lib): add native-comp vars to known debug vars
And reformat the list to distinguish Doom vars from Emacs ones.
Amend: 3853dff5e1
This commit is contained in:
parent
a0fe199237
commit
48369fb654
1 changed files with 9 additions and 4 deletions
|
@ -5,18 +5,23 @@
|
||||||
|
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
(defvar doom-debug-variables
|
(defvar doom-debug-variables
|
||||||
'(async-debug
|
'(;; Doom variables
|
||||||
|
(doom-print-level . debug)
|
||||||
|
|
||||||
|
;; Emacs variables
|
||||||
|
async-debug
|
||||||
debug-on-error
|
debug-on-error
|
||||||
(debugger . doom-debugger)
|
(debugger . doom-debugger)
|
||||||
(doom-print-level . debug)
|
|
||||||
garbage-collection-messages
|
garbage-collection-messages
|
||||||
gcmh-verbose
|
gcmh-verbose
|
||||||
init-file-debug
|
init-file-debug
|
||||||
jka-compr-verbose
|
jka-compr-verbose
|
||||||
(message-log-max . 16384)
|
(message-log-max . 16384)
|
||||||
(warning-suppress-types . nil)
|
(native-comp-async-report-warnings-errors . silent)
|
||||||
|
(native-comp-warning-on-missing-source . t)
|
||||||
url-debug
|
url-debug
|
||||||
use-package-verbose)
|
use-package-verbose
|
||||||
|
(warning-suppress-types . nil))
|
||||||
"A list of variable to toggle on `doom-debug-mode'.
|
"A list of variable to toggle on `doom-debug-mode'.
|
||||||
|
|
||||||
Each entry can be a variable symbol or a cons cell whose CAR is the variable
|
Each entry can be a variable symbol or a cons cell whose CAR is the variable
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue