File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 44
55### New Features
66
7+ * ` f ` key reruns failed tests on the test-report buffer.
8+ * ` g ` key reruns test at point on the test-report buffer.
79* Debugger now supports step-in.
810* Improve CIDER's menu-bar menu:
911 - Thoroughly reorganize it and split it into 3 separate menus;
Original file line number Diff line number Diff line change 164164 (define-key map (kbd " t" ) #'cider-test-jump )
165165 (define-key map (kbd " d" ) #'cider-test-ediff )
166166 (define-key map (kbd " e" ) #'cider-test-stacktrace )
167+ ; ; `f' for "run failed".
168+ (define-key map " f" #'cider-test-rerun-tests )
169+ ; ; `g' generally reloads the buffer. The closest thing we have to that is
170+ ; ; "run the test at point". But it's not as nice as rerunning all tests in
171+ ; ; this buffer.
172+ (define-key map " g" #'cider-test-run-test )
167173 (define-key map " q" #'cider-popup-buffer-quit-function )
168174 (easy-menu-define cider-test-report-mode-menu map
169175 " Menu for CIDER's test result mode"
You can’t perform that action at this time.
0 commit comments