@@ -205,17 +205,6 @@ With a second prefix argument it prompts for an expression to eval and inspect."
205
205
These locations are used to emulate `save-excursion' between
206
206
`cider-inspector-push' and `cider-inspector-pop' operations." )
207
207
208
- (defvar cider-inspector-page-location-stack nil
209
- " A stack used to save point locations in inspector buffers.
210
- These locations are used to emulate `save-excursion' between
211
- `cider-inspector-next-page' and `cider-inspector-prev-page' operations." )
212
-
213
- (defvar cider-inspector-last-command nil
214
- " Contains the value of the most recently used `cider-inspector-*' command.
215
- This is used as an alternative to the built-in `last-command' . Whenever we
216
- invoke any command through \\ [execute-extended-command] and its variants,
217
- the value of `last-command' is not set to the command it invokes." )
218
-
219
208
; ; Operations
220
209
;;;### autoload
221
210
(defun cider-inspect-expr (expr ns )
@@ -226,7 +215,8 @@ current buffer's namespace."
226
215
(cider-current-ns)))
227
216
(let ((result (cider-sync-request:inspect-expr expr ns)))
228
217
(when (nrepl-dict-get result " value" )
229
- (cider-inspector--render-value result))))
218
+ (setq cider-inspector-location-stack nil )
219
+ (cider-inspector--render-value result :next-inspectable ))))
230
220
231
221
(defun cider-inspect-expr-from-inspector ()
232
222
" Performs `cider-inspect-expr' in a way that is suitable from the Inspector itself.
@@ -242,10 +232,9 @@ In particular, it does not read `cider-sexp-at-point'."
242
232
" Pop the last value off the inspector stack and render it.
243
233
See `cider-sync-request:inspect-pop' and `cider-inspector--render-value' ."
244
234
(interactive )
245
- (setq cider-inspector-last-command 'cider-inspector-pop )
246
235
(let ((result (cider-sync-request:inspect-pop)))
247
236
(when (nrepl-dict-get result " value" )
248
- (cider-inspector--render-value result))))
237
+ (cider-inspector--render-value result :pop ))))
249
238
250
239
(defun cider-inspector-push (idx )
251
240
" Inspect the value at IDX in the inspector stack and render it.
@@ -254,38 +243,32 @@ See `cider-sync-request:inspect-push' and `cider-inspector--render-value'"
254
243
(let ((result (cider-sync-request:inspect-push idx)))
255
244
(when (nrepl-dict-get result " value" )
256
245
(push (point ) cider-inspector-location-stack)
257
- (cider-inspector--render-value result)
258
- (cider-inspector-next-inspectable-object 1 ))))
246
+ (cider-inspector--render-value result :next-inspectable ))))
259
247
260
248
(defun cider-inspector-inspect-last-exception (index )
261
249
" Inspects the exception in the cause stack identified by INDEX."
262
250
(interactive )
263
251
(cl-assert (numberp index))
264
252
(let ((result (cider-sync-request:inspect-last-exception index)))
265
253
(when (nrepl-dict-get result " value" )
266
- (push (point ) cider-inspector-location-stack)
267
- (cider-inspector--render-value result)
268
- (cider-inspector-next-inspectable-object 1 ))))
254
+ (setq cider-inspector-location-stack nil )
255
+ (cider-inspector--render-value result :next-inspectable ))))
269
256
270
257
(defun cider-inspector-previous-sibling ()
271
258
" Inspect the previous sibling value within a sequential parent.
272
259
See `cider-sync-request:inspect-previous-sibling' and `cider-inspector--render-value' "
273
260
(interactive )
274
261
(let ((result (cider-sync-request:inspect-previous-sibling)))
275
262
(when (nrepl-dict-get result " value" )
276
- (push (point ) cider-inspector-location-stack)
277
- (cider-inspector--render-value result)
278
- (cider-inspector-next-inspectable-object 1 ))))
263
+ (cider-inspector--render-value result))))
279
264
280
265
(defun cider-inspector-next-sibling ()
281
266
" Inspect the next sibling value within a sequential parent.
282
267
See `cider-sync-request:inspect-next-sibling' and `cider-inspector--render-value' "
283
268
(interactive )
284
269
(let ((result (cider-sync-request:inspect-next-sibling)))
285
270
(when (nrepl-dict-get result " value" )
286
- (push (point ) cider-inspector-location-stack)
287
- (cider-inspector--render-value result)
288
- (cider-inspector-next-inspectable-object 1 ))))
271
+ (cider-inspector--render-value result))))
289
272
290
273
(defun cider-inspector--refresh-with-opts (&rest opts )
291
274
" Invokes `inspect-refresh' op with supplied extra OPTS.
@@ -305,7 +288,6 @@ Re-renders the currently inspected value."
305
288
306
289
Does nothing if already on the last page."
307
290
(interactive )
308
- (push (point ) cider-inspector-page-location-stack)
309
291
(let ((result (cider-sync-request:inspect-next-page)))
310
292
(when (nrepl-dict-get result " value" )
311
293
(cider-inspector--render-value result))))
@@ -315,7 +297,6 @@ Does nothing if already on the last page."
315
297
316
298
Does nothing if already on the first page."
317
299
(interactive )
318
- (setq cider-inspector-last-command 'cider-inspector-prev-page )
319
300
(let ((result (cider-sync-request:inspect-prev-page)))
320
301
(when (nrepl-dict-get result " value" )
321
302
(cider-inspector--render-value result))))
@@ -350,7 +331,7 @@ MAX-NESTED-DEPTH is the new value."
350
331
(let ((result (cider-nrepl-send-sync-request `(" op" " inspect-toggle-view-mode" )
351
332
(cider-current-repl))))
352
333
(when (nrepl-dict-get result " value" )
353
- (cider-inspector--render-value result))))
334
+ (cider-inspector--render-value result :next-inspectable ))))
354
335
355
336
(defcustom cider-inspector-preferred-var-names nil
356
337
" The preferred var names to be suggested by `cider-inspector-def-current-val' .
@@ -515,10 +496,12 @@ MAX-COLL-SIZE if non nil."
515
496
(declare-function cider-set-buffer-ns " cider-mode" )
516
497
517
498
; ; Render Inspector from Structured Values
518
- (defun cider-inspector--render-value (dict-or-value )
499
+ (defun cider-inspector--render-value (dict-or-value &optional point-action )
519
500
" Render DICT-OR-VALUE.
520
501
It can either be a value directly or a inspector response that contains
521
- `value' field."
502
+ `value' field.
503
+ POINT-ACTION can either be nil (leave point where it is now), `:pop' (pop point
504
+ from stack), `:next-inspectable' (move point to next inspectable object)."
522
505
(let* ((value (if (nrepl-dict-p dict-or-value)
523
506
(nrepl-dict-get dict-or-value " value" )
524
507
dict-or-value))
@@ -535,31 +518,24 @@ It can either be a value directly or a inspector response that contains
535
518
(truncate-lines-p (when-let* ((b (get-buffer cider-inspector-buffer))
536
519
(continue truncate-lines-defined))
537
520
(buffer-local-value 'truncate-lines b)))
538
- (repl (cider-current-repl)))
521
+ (repl (cider-current-repl))
522
+ (current-point (point )))
539
523
(cider-make-popup-buffer cider-inspector-buffer 'cider-inspector-mode 'ancillary )
540
524
(cider-inspector-render cider-inspector-buffer value
541
525
:font-size font-size
542
526
:truncate-lines-defined truncate-lines-defined
543
527
:truncate-lines-p truncate-lines-p)
544
528
(cider-popup-buffer-display cider-inspector-buffer cider-inspector-auto-select-buffer)
545
529
(when cider-inspector-fill-frame (delete-other-windows ))
546
- (ignore-errors (cider-inspector-next-inspectable-object 1 ))
547
530
(with-current-buffer cider-inspector-buffer
548
531
(setq cider--ancillary-buffer-repl repl)
549
532
(cider-set-buffer-ns ns)
550
- (when (eq cider-inspector-last-command 'cider-inspector-pop )
551
- (setq cider-inspector-last-command nil )
552
- ; ; Prevents error message being displayed when we try to pop
553
- ; ; from the top-level of a data structure
554
- (when cider-inspector-location-stack
555
- (goto-char (pop cider-inspector-location-stack))))
556
-
557
- (when (eq cider-inspector-last-command 'cider-inspector-prev-page )
558
- (setq cider-inspector-last-command nil )
559
- ; ; Prevents error message being displayed when we try to
560
- ; ; go to a prev-page from the first page
561
- (when cider-inspector-page-location-stack
562
- (goto-char (pop cider-inspector-page-location-stack)))))))
533
+ (cond ((eq point-action nil ) (goto-char current-point))
534
+ ((eq point-action :next-inspectable ) (ignore-errors (cider-inspector-next-inspectable-object 1 )))
535
+ ((eq point-action :pop )
536
+ (goto-char (or (when cider-inspector-location-stack
537
+ (pop cider-inspector-location-stack))
538
+ current-point)))))))
563
539
564
540
(cl-defun cider-inspector-render (buffer str &key font-size truncate-lines-defined truncate-lines-p )
565
541
" Render STR in BUFFER."
0 commit comments