File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
doc/modules/ROOT/pages/debugging Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change 1
1
= Inspector
2
2
:experimental:
3
3
4
+ The value inspector allows you inspect and navigate the structure of data. While you can use
5
+ it for pretty much anything (e.g. primitive data types, var, ref types) it's most
6
+ useful when you're dealing with (deeply) nested collection-like data types (e.g. a vector of maps).
7
+
8
+ == Usage
9
+
4
10
Typing kbd:[C-c M-i] (`cider-inspect`) after some form in a source
5
11
buffer or the REPL will show you the structure for the result of the
6
12
form in a new buffer. You can also use kbd:[C-u C-c M-i] to inspect
@@ -13,7 +19,7 @@ buffer is visible in the background, it is automatically updated with
13
19
the last result. This behavior can be controlled with the variable
14
20
`cider-auto-inspect-after-eval`.
15
21
16
- The inspector can also be invoked in the middle of a debugging
22
+ TIP: The inspector can also be invoked in the middle of a debugging
17
23
session, see xref:debugger.adoc[here] for more details.
18
24
19
25
You'll have access to additional keybindings in the inspector buffer
@@ -51,3 +57,7 @@ You'll have access to additional keybindings in the inspector buffer
51
57
By default, navigation skips over values like nils, numbers and
52
58
keywords, which are not interesting to inspect. You can control this
53
59
behavior using the variable `cider-inspector-skip-uninteresting`.
60
+
61
+ == Additional Resources
62
+
63
+ * https://practicalli.github.io/spacemacs/evaluating-clojure/inspect.html[Using CIDER's Inspector in Spacemacs]
You can’t perform that action at this time.
0 commit comments