We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
cider--inspector-java-headers
1 parent 896edd2 commit e650b60Copy full SHA for e650b60
cider-inspector.el
@@ -436,7 +436,13 @@ MAX-COLL-SIZE if non nil."
436
(cider-inspector-render-el* el)))
437
438
(defconst cider--inspector-java-headers
439
- '("--- Interfaces:" "--- Constructors:" "--- Fields:" "--- Methods:" "--- Imports:"))
+ ;; NOTE "--- Static fields:" "--- Instance fields:" are for objects,
440
+ ;; and don't deserve Java syntax highlighting (they can contain a Clojure value like `:foo/bar`, for instance)
441
+ '("--- Interfaces:"
442
+ "--- Fields:" ;; rendered only for Class objects (and not other objects) - see previous comment
443
+ "--- Constructors:"
444
+ "--- Methods:"
445
+ "--- Imports:"))
446
447
(defun cider-inspector-render-el* (el)
448
"Render EL."
0 commit comments