@@ -354,11 +354,8 @@ into a new error buffer."
354
354
; ; Causes are returned as a series of messages, which we aggregate in `causes'
355
355
(let (causes ex-phase)
356
356
(cider-nrepl-send-request
357
- (thread-last
358
- (map-merge 'list
359
- '((" op" " analyze-last-stacktrace" ))
360
- (cider--nrepl-print-request-map fill-column))
361
- (seq-mapcat #'identity ))
357
+ `(" op" " analyze-last-stacktrace"
358
+ ,@(cider--nrepl-print-request-plist fill-column))
362
359
(lambda (response )
363
360
(nrepl-dbind-response response (phase)
364
361
(when phase
@@ -691,13 +688,12 @@ REPL buffer. This is controlled via
691
688
(cider-current-repl))))
692
689
(when (cider-nrepl-op-supported-p " analyze-last-stacktrace" conn)
693
690
(let ((nrepl-sync-request-timeout 4 )) ; ; ensure that this feature cannot possibly create an overly laggy UX
694
- (when-let* ((result (nrepl-send-sync-request (thread-last (map-merge 'list
695
- '((" op" " analyze-last-stacktrace" ))
696
- (cider--nrepl-print-request-map fill-column))
697
- (seq-mapcat #'identity ))
698
- conn
699
- 'abort-on-input ; ; favor responsiveness over this feature, in case something went wrong.
700
- )))
691
+ (when-let* ((result (nrepl-send-sync-request
692
+ `(" op" " analyze-last-stacktrace"
693
+ ,@(cider--nrepl-print-request-plist fill-column))
694
+ conn
695
+ 'abort-on-input ; ; favor responsiveness over this feature, in case something went wrong.
696
+ )))
701
697
(nrepl-dict-get result " phase" )))))))
702
698
703
699
(defcustom cider-inline-error-message-function #'cider--shorten-error-message
@@ -1026,11 +1022,12 @@ API. Most other interactive eval functions should rely on this function.
1026
1022
If CALLBACK is nil use `cider-interactive-eval-handler' .
1027
1023
BOUNDS, if non-nil, is a list of two numbers marking the start and end
1028
1024
positions of FORM in its buffer.
1029
- ADDITIONAL-PARAMS is a map to be merged into the request message.
1025
+ ADDITIONAL-PARAMS is a plist to be merged into the request message.
1030
1026
1031
1027
If `cider-interactive-eval-override' is a function, call it with the same
1032
1028
arguments and only proceed with evaluation if it returns nil."
1033
1029
(let ((form (or form (apply #'buffer-substring-no-properties bounds)))
1030
+ (additional-params (nrepl--alist-to-plist additional-params))
1034
1031
(start (car-safe bounds))
1035
1032
(end (car-safe (cdr-safe bounds))))
1036
1033
(when (and start end)
@@ -1057,7 +1054,7 @@ arguments and only proceed with evaluation if it returns nil."
1057
1054
(if (cider-ns-form-p form) " user" (cider-current-ns))
1058
1055
(when start (line-number-at-pos start))
1059
1056
(when start (cider-column-number-at-pos start))
1060
- ( seq-mapcat # 'identity additional-params)
1057
+ additional-params
1061
1058
connection))))))
1062
1059
1063
1060
(defun cider-eval-region (start end )
@@ -1066,7 +1063,7 @@ arguments and only proceed with evaluation if it returns nil."
1066
1063
(cider-interactive-eval nil
1067
1064
nil
1068
1065
(list start end)
1069
- (cider--nrepl-pr-request-map )))
1066
+ (cider--nrepl-pr-request-plist )))
1070
1067
1071
1068
(defun cider-eval-last-sexp (&optional output-to-current-buffer )
1072
1069
" Evaluate the expression preceding point.
@@ -1076,7 +1073,7 @@ buffer."
1076
1073
(cider-interactive-eval nil
1077
1074
(when output-to-current-buffer (cider-eval-print-handler))
1078
1075
(cider-last-sexp 'bounds )
1079
- (cider--nrepl-pr-request-map )))
1076
+ (cider--nrepl-pr-request-plist )))
1080
1077
1081
1078
(defun cider-eval-last-sexp-and-replace ()
1082
1079
" Evaluate the expression preceding point and replace it with its result."
@@ -1091,7 +1088,7 @@ buffer."
1091
1088
(cider-interactive-eval last-sexp
1092
1089
(cider-eval-print-handler)
1093
1090
nil
1094
- (cider--nrepl-pr-request-map ))))
1091
+ (cider--nrepl-pr-request-plist ))))
1095
1092
1096
1093
(defun cider-eval-list-at-point (&optional output-to-current-buffer )
1097
1094
" Evaluate the list (eg. a function call, surrounded by parens) around point.
@@ -1118,7 +1115,7 @@ buffer."
1118
1115
(cider-interactive-eval tapped-form
1119
1116
(when output-to-current-buffer (cider-eval-print-handler))
1120
1117
nil
1121
- (cider--nrepl-pr-request-map ))))
1118
+ (cider--nrepl-pr-request-plist ))))
1122
1119
1123
1120
(defun cider-tap-sexp-at-point (&optional output-to-current-buffer )
1124
1121
" Evaluate and tap the expression around point.
@@ -1167,7 +1164,7 @@ When GUESS is non-nil, attempt to extract the context from parent let-bindings."
1167
1164
(cider-interactive-eval code
1168
1165
nil
1169
1166
bounds
1170
- (cider--nrepl-pr-request-map ))))
1167
+ (cider--nrepl-pr-request-plist ))))
1171
1168
1172
1169
(defun cider-eval-last-sexp-in-context (guess )
1173
1170
" Evaluate the preceding sexp in user-supplied context.
@@ -1206,7 +1203,7 @@ With the prefix arg INSERT-BEFORE, insert before the form, otherwise afterwards.
1206
1203
(set-marker (make-marker ) insertion-point)
1207
1204
cider-comment-prefix)
1208
1205
bounds
1209
- (cider--nrepl-pr-request-map ))))
1206
+ (cider--nrepl-pr-request-plist ))))
1210
1207
1211
1208
(defun cider-pprint-form-to-comment (form-fn insert-before )
1212
1209
" Evaluate the form selected by FORM-FN and insert result as comment.
@@ -1236,7 +1233,7 @@ If INSERT-BEFORE is non-nil, insert before the form, otherwise afterwards."
1236
1233
cider-comment-continued-prefix
1237
1234
comment-postfix)
1238
1235
bounds
1239
- (cider--nrepl-print-request-map fill-column))))
1236
+ (cider--nrepl-print-request-plist fill-column))))
1240
1237
1241
1238
(defun cider-pprint-eval-last-sexp-to-comment (&optional insert-before )
1242
1239
" Evaluate the last sexp and insert result as comment.
@@ -1290,13 +1287,13 @@ honoring SWITCH-TO-REPL, REQUEST-MAP."
1290
1287
" Evaluate the expression preceding point and insert its result in the REPL.
1291
1288
If invoked with a PREFIX argument, switch to the REPL buffer."
1292
1289
(interactive " P" )
1293
- (cider--eval-last-sexp-to-repl prefix (cider--nrepl-pr-request-map )))
1290
+ (cider--eval-last-sexp-to-repl prefix (cider--nrepl-pr-request-plist )))
1294
1291
1295
1292
(defun cider-pprint-eval-last-sexp-to-repl (&optional prefix )
1296
1293
" Evaluate expr before point and insert its pretty-printed result in the REPL.
1297
1294
If invoked with a PREFIX argument, switch to the REPL buffer."
1298
1295
(interactive " P" )
1299
- (cider--eval-last-sexp-to-repl prefix (cider--nrepl-print-request-map fill-column)))
1296
+ (cider--eval-last-sexp-to-repl prefix (cider--nrepl-print-request-plist fill-column)))
1300
1297
1301
1298
(defun cider-eval-print-last-sexp (&optional pretty-print )
1302
1299
" Evaluate the expression preceding point.
@@ -1307,8 +1304,8 @@ With an optional PRETTY-PRINT prefix it pretty-prints the result."
1307
1304
(cider-eval-print-handler)
1308
1305
(cider-last-sexp 'bounds )
1309
1306
(if pretty-print
1310
- (cider--nrepl-print-request-map fill-column)
1311
- (cider--nrepl-pr-request-map ))))
1307
+ (cider--nrepl-print-request-plist fill-column)
1308
+ (cider--nrepl-pr-request-plist ))))
1312
1309
1313
1310
(defun cider--pprint-eval-form (form )
1314
1311
" Pretty print FORM in popup buffer."
@@ -1319,7 +1316,7 @@ With an optional PRETTY-PRINT prefix it pretty-prints the result."
1319
1316
(cider-interactive-eval (when (stringp form) form)
1320
1317
handler
1321
1318
(when (consp form) form)
1322
- (cider--nrepl-print-request-map fill-column)))))
1319
+ (cider--nrepl-print-request-plist fill-column)))))
1323
1320
1324
1321
(defun cider-pprint-eval-last-sexp (&optional output-to-current-buffer )
1325
1322
" Evaluate the sexp preceding point and pprint its value.
@@ -1383,7 +1380,7 @@ command `cider-debug-defun-at-point'."
1383
1380
(concat " #dbg\n " (cider-defun-at-point)))
1384
1381
nil
1385
1382
(cider-defun-at-point 'bounds )
1386
- (cider--nrepl-pr-request-map ))))
1383
+ (cider--nrepl-pr-request-plist ))))
1387
1384
1388
1385
(defun cider--insert-closing-delimiters (code )
1389
1386
" Closes all open parenthesized or bracketed expressions of CODE."
@@ -1415,7 +1412,7 @@ buffer. It constructs an expression to eval in the following manner:
1415
1412
(when output-to-current-buffer
1416
1413
(cider-eval-print-handler))
1417
1414
(list beg-of-defun (point ))
1418
- (cider--nrepl-pr-request-map ))))
1415
+ (cider--nrepl-pr-request-plist ))))
1419
1416
1420
1417
(defun cider--matching-delimiter (delimiter )
1421
1418
" Get the matching (opening/closing) delimiter for DELIMITER."
@@ -1446,7 +1443,7 @@ buffer. It constructs an expression to eval in the following manner:
1446
1443
(when output-to-current-buffer
1447
1444
(cider-eval-print-handler))
1448
1445
(list beg-of-sexp (point ))
1449
- (cider--nrepl-pr-request-map ))))
1446
+ (cider--nrepl-pr-request-plist ))))
1450
1447
1451
1448
(defun cider-pprint-eval-defun-at-point (&optional output-to-current-buffer )
1452
1449
" Evaluate the \" top-level\" form at point and pprint its value.
@@ -1485,7 +1482,7 @@ If VALUE is non-nil, it is inserted into the minibuffer as initial input."
1485
1482
(cider-interactive-eval form
1486
1483
nil
1487
1484
nil
1488
- (cider--nrepl-pr-request-map ))))))
1485
+ (cider--nrepl-pr-request-plist ))))))
1489
1486
1490
1487
(defun cider-read-and-eval-defun-at-point ()
1491
1488
" Insert the toplevel form at point in the minibuffer and output its result.
0 commit comments