diff options
author | Griffin Smith <root@gws.fyi> | 2020-05-26T14·28-0400 |
---|---|---|
committer | Griffin Smith <root@gws.fyi> | 2020-05-26T14·28-0400 |
commit | 77f6ed22065e026be826f978905097742dbb3fc4 (patch) | |
tree | 52fdb6d7ed8dd4686c598560a6ba30e811c310fd /+bindings.el | |
parent | 723ff591ee952fb94fd50997160b90b5219e4b74 (diff) |
Fix run-tests snippet
cider-test-run-ns-tests needs to be called interactively
Diffstat (limited to '+bindings.el')
-rw-r--r-- | +bindings.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/+bindings.el b/+bindings.el index db1c5e6c7a62..9596d485f2a1 100644 --- a/+bindings.el +++ b/+bindings.el @@ -1228,7 +1228,10 @@ If invoked with a prefix ARG eval the expression after inserting it" (s-replace "\"" "") (s-replace "\\n" "\n"))))) nil nil nil))) - ('clj (cider-test-run-ns-tests)))) + ('clj + (funcall-interactively + #'cider-test-run-ns-tests + nil)))) (defun cider-copy-last-result () (interactive) |