-
-
Notifications
You must be signed in to change notification settings - Fork 45
Fix inf-clojure-apropos #128
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
eb0c7d7
to
7eda39a
Compare
One thing I wanted to do was to use
So I decided to stick with the previous version. It would be great to have the same keybinding though. I need some hint on how to achieve that @bbatsov, I guess I need a prefix binding? |
Doc functions are in a separate keymap in CIDER, and it's bound under |
Do you think we should unify also the other keys? Probably either we use |
The function signature was broken, also update the docstring.
Broken because emacs interprets C-A as C-a. This patch also adds the same key binding to inf-clojure-mode (in the REPL).
7eda39a
to
d8c3ef1
Compare
If we want to keep this way, the PR is ready and probably should go in as is, then we decide if we want to move the key bindings to Cider's |
Probably that would be best. I see I've chosen some rather random keybindings initially. :D |
The functionality was erroring out cause of wrong function signature.
Moreover the key binding was not working because
C-A
is interpreted asC-a
byemacs (it seems, seeking Elisp expert advice).
This patch also add
C-c C-S-A
toinf-clojure-mode
(the REPL itself).Before submitting the PR make sure the following things have been done (and denote this
by checking the relevant checkboxes):
M-x checkdoc
warningsThanks!