diff options
author | Griffin Smith <grfn@gws.fyi> | 2021-12-26T16·01-0500 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2021-12-26T16·06+0000 |
commit | 19fc03f9057a9f02685fb5cbe8b392958eb8d71a (patch) | |
tree | 5511949dc8dd8278c2a8acd5fcaf6fe1b5aa093f /users/grfn/emacs.d | |
parent | 66a0334c782fa0bd24f8723a4bfa4d29d9acab26 (diff) |
feat(grfn/emacs): Add binding for cljr-rename-symbol r/3420
and cider-apropos Change-Id: I2a90fba0268f15f1462c2623b11994851f40e4af Reviewed-on: https://cl.tvl.fyi/c/depot/+/4638 Tested-by: BuildkiteCI Reviewed-by: grfn <grfn@gws.fyi> Autosubmit: grfn <grfn@gws.fyi>
Diffstat (limited to 'users/grfn/emacs.d')
-rw-r--r-- | users/grfn/emacs.d/+bindings.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/users/grfn/emacs.d/+bindings.el b/users/grfn/emacs.d/+bindings.el index 508879e417ec..0faa7f9ed849 100644 --- a/users/grfn/emacs.d/+bindings.el +++ b/users/grfn/emacs.d/+bindings.el @@ -1378,11 +1378,12 @@ If invoked with a prefix ARG eval the expression after inserting it" :n "g SPC" 'cider-eval-buffer :n "g \\" 'cider-switch-to-repl-buffer :n "K" 'cider-doc - :n "g K" 'cider-grimoire + :n "g K" 'cider-apropos :n "g d" 'cider-find-dwim :n "C-w ]" 'cider-find-dwim-other-window ;; :n "g RET" 'cider-test-run-ns-tests :n "g RET" 'grfn/run-clj-or-cljs-test + :n "g r" #'cljr-rename-symbol "C-c C-r r" 'cljr-add-require-to-ns "C-c C-r i" 'cljr-add-import-to-ns |