File tree Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change 36
36
37
37
(push cider-macroexpansion-buffer cider-ancilliary-buffers)
38
38
39
- (defcustom cider-macroexpansion-suppress-namespaces nil
40
- " When non-nil namespaces won't be displayed in the macroexpansion buffer."
41
- :type 'boolean
39
+ (defcustom cider-macroexpansion-suppress-namespaces 'tidy
40
+ " Determines if namespaces are displayed in the macroexpansion buffer.
41
+ Possible values are:
42
+
43
+ nil ;=> Vars are fully-qualified in the expansion
44
+ t ;=> Vars are displayed without namespace qualification
45
+ 'tidy ;=> Vars that are :refer-ed or defined in the current namespace are
46
+ displayed with their simple name, non-refered vars from other
47
+ namespaces are refered using the alias for that namespace (if
48
+ defined), other vars are displayed fully qualified."
49
+ :type '(choice (const :tag " Suppress namespaces" t )
50
+ (const :tag " Show namespaces" nil )
51
+ (const :tag " Show namespace aliases" tidy))
42
52
:group 'cider
43
53
:package-version '(cider . " 0.7.0" ))
44
54
You can’t perform that action at this time.
0 commit comments