File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 48
48
" Fill column for error messages in stacktrace display.
49
49
If nil, messages will not be wrapped. If truthy but non-numeric,
50
50
`fill-column' will be used."
51
- :type 'list
51
+ :type '(radio
52
+ (integer :tag " Fill Column" )
53
+ (const :tag " None" nil )
54
+ (const :tag " Use default fill-column" t )))
52
55
:package-version '(cider . " 0.7.0" ))
53
56
54
57
(defcustom cider-stacktrace-default-filters '(tooling dup)
55
58
" Frame types to omit from initial stacktrace display."
56
- :type 'list
59
+ :type '( list symbol)
57
60
:package-version '(cider . " 0.6.0" ))
58
61
59
62
(defcustom cider-stacktrace-navigate-to-other-window t
@@ -75,7 +78,7 @@ Pick nil if you prefer the same window as *cider-error*."
75
78
(defcustom cider-stacktrace-suppressed-errors '()
76
79
" Errors that won't make the stacktrace buffer 'pop-over' your active window.
77
80
The error types are represented as strings."
78
- :type 'list
81
+ :type '( list string)
79
82
:package-version '(cider . " 0.12.0" ))
80
83
81
84
; ; Faces
You can’t perform that action at this time.
0 commit comments