File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed
doc/modules/ROOT/pages/debugging Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## master (unreleased)
4
4
5
+ ### New features
6
+
7
+ - [ #3262 ] ( https://github.com/clojure-emacs/cider/issues/3262 ) Add navigation functionality to ` npfb ` keys inside inspect buffer.
8
+
5
9
### Changes
6
10
7
11
- Allow using ` npx nbb ` as ` cider-nbb-command ` .
Original file line number Diff line number Diff line change @@ -108,7 +108,11 @@ by clicking or navigating to them by other means."
108
108
(define-key map " d" #'cider-inspector-def-current-val )
109
109
(define-key map [tab] #'cider-inspector-next-inspectable-object )
110
110
(define-key map " \C -i" #'cider-inspector-next-inspectable-object )
111
+ (define-key map " n" #'cider-inspector-next-inspectable-object )
111
112
(define-key map [(shift tab)] #'cider-inspector-previous-inspectable-object )
113
+ (define-key map " p" #'cider-inspector-previous-inspectable-object )
114
+ (define-key map " f" #'forward-char )
115
+ (define-key map " b" #'backward-char )
112
116
; ; Emacs translates S-TAB to BACKTAB on X.
113
117
(define-key map [backtab] #'cider-inspector-previous-inspectable-object )
114
118
(easy-menu-define cider-inspector-mode-menu map
Original file line number Diff line number Diff line change @@ -28,9 +28,12 @@ You'll have access to additional keybindings in the inspector buffer
28
28
|===
29
29
| Keyboard shortcut | Description
30
30
31
- | kbd:[Tab] and kbd:[Shift-Tab]
31
+ | kbd:[Tab] and kbd:[Shift-Tab] / kdb:[n] and kbd:[p]
32
32
| Navigate inspectable sub-objects
33
33
34
+ | kbd:[f] and kbd:[b]
35
+ | Navigate across characters on a line
36
+
34
37
| kbd:[Return]
35
38
| Inspect sub-objects
36
39
You can’t perform that action at this time.
0 commit comments