@@ -407,11 +407,13 @@ Otherwise open the file and do the changes non-interactively."
407
407
_ai_: Add import to ns _am_: Add missing libspec _ap_: Add project dependency
408
408
_ar_: Add require to ns _au_: Add use to ns _cn_: Clean ns
409
409
_rm_: Require a macro into the ns _sr_: Stop referring
410
+ _b_: Back to previous Hydra
410
411
"
411
412
(" ai" cljr-add-import-to-ns) (" am" cljr-add-missing-libspec)
412
413
(" ap" cljr-add-project-dependency) (" ar" cljr-add-require-to-ns)
413
414
(" au" cljr-add-use-to-ns) (" cn" cljr-clean-ns)
414
415
(" rm" cljr-require-macro) (" sr" cljr-stop-referring)
416
+ (" b" hydra-cljr-help-menu/body :exit t )
415
417
(" q" nil " quit" ))
416
418
417
419
(defhydra hydra-cljr-code-menu (:color pink :hint nil )
@@ -424,6 +426,7 @@ _il_: Introduce let _is_: Inline symbol
424
426
_pf_: Promote function _rl_: Remove let _rs_: Rename symbol
425
427
_tf_: Thread first all _th_: Thread _tl_: Thread last all
426
428
_ua_: Unwind all _uw_: Unwind
429
+ _b_: Back to previous Hydra
427
430
"
428
431
(" ci" clojure-cycle-if) (" ct" cljr-cycle-thread)
429
432
(" dk" cljr-destructure-keys) (" el" cljr-expand-let)
@@ -433,6 +436,7 @@ _ua_: Unwind all _uw_: Unwind
433
436
(" rs" cljr-rename-symbol) (" tf" clojure-thread-first-all)
434
437
(" th" clojure-thread) (" tl" clojure-thread-last-all)
435
438
(" ua" clojure-unwind-all) (" uw" clojure-unwind)
439
+ (" b" hydra-cljr-help-menu/body :exit t )
436
440
(" q" nil " quit" ))
437
441
438
442
(defhydra hydra-cljr-project-menu (:color pink :hint nil )
@@ -443,13 +447,16 @@ _ap_: Add project dependency _cs_: Change function signatu
443
447
_hd_: Hotload dependency _is_: Inline symbol _mf_: Move form
444
448
_pc_: Project clean _rf_: Rename file-or-dir _rs_: Rename symbol _sp_: Sort project dependencies
445
449
_up_: Update project dependencies
450
+ _b_: Back to previous Hydra
446
451
"
447
452
(" ap" cljr-add-project-dependency) (" cs" cljr-change-function-signature)
448
453
(" fu" cljr-find-usages) (" hd" cljr-hotload-dependency)
449
454
(" is" cljr-inline-symbol) (" mf" cljr-move-form)
450
455
(" pc" cljr-project-clean) (" rf" cljr-rename-file-or-dir)
451
456
(" rs" cljr-rename-symbol) (" sp" cljr-sort-project-dependencies)
452
- (" up" cljr-update-project-dependencies) (" q" nil " quit" ))
457
+ (" up" cljr-update-project-dependencies)
458
+ (" b" hydra-cljr-help-menu/body :exit t )
459
+ (" q" nil " quit" ))
453
460
454
461
(defhydra hydra-cljr-toplevel-form-menu (:color pink :hint nil )
455
462
"
@@ -459,21 +466,27 @@ _as_: Add stubs for the interface/protocol at point_cp_: Cycle privacy
459
466
_ec_: Extract constant _ed_: Extract form as def _ef_: Extract function
460
467
_fe_: Create function from example _is_: Inline symbol _mf_: Move form
461
468
_pf_: Promote function _rf_: Rename file-or-dir _ad_: Add declaration
469
+ _b_: Back to previous Hydra
462
470
"
463
471
(" as" cljr-add-stubs) (" cp" clojure-cycle-privacy)
464
472
(" cs" cljr-change-function-signature) (" ec" cljr-extract-constant)
465
473
(" ed" cljr-extract-def) (" ef" cljr-extract-function)
466
474
(" fe" cljr-create-fn-from-example) (" is" cljr-inline-symbol)
467
475
(" mf" cljr-move-form) (" pf" cljr-promote-function)
468
- (" rf" cljr-rename-file-or-dir) (" ad" cljr-add-declaration) (" q" nil " quit" ))
476
+ (" rf" cljr-rename-file-or-dir) (" ad" cljr-add-declaration)
477
+ (" b" hydra-cljr-help-menu/body :exit t )
478
+ (" q" nil " quit" ))
469
479
470
480
(defhydra hydra-cljr-cljr-menu (:color pink :hint nil )
471
481
"
472
482
Cljr related refactorings
473
483
------------------------------------------------------------------------------------------------------------------------------------------------------
474
484
_sc_: Show the project's changelog _?_: Describe refactoring
485
+ _b_: Back to previous Hydra
475
486
"
476
- (" sc" cljr-show-changelog) (" ?" cljr-describe-refactoring) (" q" nil " quit" ))
487
+ (" sc" cljr-show-changelog) (" ?" cljr-describe-refactoring)
488
+ (" b" hydra-cljr-help-menu/body :exit t )
489
+ (" q" nil " quit" ))
477
490
478
491
(defhydra hydra-cljr-help-menu (:color pink :hint nil )
479
492
"
0 commit comments