You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/modules/ROOT/pages/debugging/inspector.adoc
+21-2Lines changed: 21 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,40 +26,59 @@ You'll have access to additional keybindings in the inspector buffer
26
26
(which is internally using `cider-inspector-mode`):
27
27
28
28
|===
29
-
| Keyboard shortcut | Description
29
+
| Keyboard shortcut | Command | Description
30
30
31
-
| kbd:[Tab] and kbd:[Shift-Tab] / kdb:[n] and kbd:[p]
31
+
| kbd:[Tab] and kbd:[Shift-Tab] / kbd:[n] and kbd:[p]
32
+
| `cider-inspector-next-inspectable-object`
32
33
| Navigate inspectable sub-objects
33
34
34
35
| kbd:[f] and kbd:[b]
36
+
| `forward-char`, `backward-char`
35
37
| Navigate across characters on a line
36
38
37
39
| kbd:[Return]
40
+
| `cider-inspector-operate-on-point`
38
41
| Inspect sub-objects
39
42
40
43
| kbd:[l]
44
+
| `cider-inspector-pop`
41
45
| Pop to the parent object
42
46
43
47
| kbd:[g]
48
+
| `cider-inspector-refresh`
44
49
| Refresh the inspector (e.g. if viewing an atom/ref/agent)
45
50
46
51
| kbd:[SPC]
52
+
| `cider-inspector-next-page`
47
53
| Jump to next page in paginated view
48
54
49
55
| kbd:[M-SPC]
56
+
| `cider-inspector-prev-page`
50
57
| Jump to previous page in paginated view
51
58
52
59
| kbd:[s]
60
+
| `cider-inspector-set-page-size`
53
61
| Set a new page size in paginated view
54
62
55
63
| kbd:[c]
64
+
| `cider-inspector-set-max-coll-size`
56
65
| Set a new maximum size above which nested collections are truncated
57
66
58
67
| kbd:[a]
68
+
| `cider-inspector-set-max-atom-length`
59
69
| Set a new maximum length above which nested atoms (non-collections) are truncated
60
70
61
71
| kbd:[d]
72
+
| `cider-inspector-def-current-val`
62
73
| Defines a var in the REPL namespace with current inspector value. If you tend to always choose the same name(s), you may want to set the `cider-inspector-preferred-var-names` customization option.
74
+
75
+
| kbd:[9]
76
+
| `cider-inspector-previous-sibling`
77
+
| Navigates to the previous sibling, within a sequential collection.
78
+
79
+
| kbd:[0]
80
+
| `cider-inspector-next-sibling`
81
+
| Navigates to the next sibling, within a sequential collection.
0 commit comments