-
-
Notifications
You must be signed in to change notification settings - Fork 645
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
Option to find definition in same window #2499
Comments
Removing the I guess the action functions could be controlled by a new customization variable, but then the behavior would be changed for all occurences of the |
I think customization of the action functions would give me what I want. BTW, maybe I should have mentioned that M-. in an Emacs Lisp buffer does do what I want. |
interestingly I have an opposite problem. Docstring for
but I am failing to make it appear in other window. It's always in the same window. |
Well, I submitted a tiny PR - locally it fixes things for me: opens in the same window by default, opens in the other window with prefix arg. #2583 |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contribution and understanding! |
Provide a means to control what window to use when jumping to a definition with `cider-jump-to`. By default, always use current window. Provide an option to use existing buffer in current frame when there is one that is showing the target buffer. (This is the old behaviour, but note that it does not work well with `cider-pop-back` (M-,). This fixes clojure-emacs#2499
Provide a means to control what window to use when jumping to a definition with `cider-jump-to`. By default, always use current window. Provide an option to use existing buffer in current frame when there is one that is showing the target buffer. (This is the old behaviour, but note that it does not work well with `cider-pop-back` (M-,). This fixes clojure-emacs#2499
Provide a means to control what window to use when jumping to a definition with `cider-jump-to`. By default, always use current window. Provide an option to use existing buffer in current frame when there is one that is showing the target buffer. (This is the old behaviour, but note that it does not work well with `cider-pop-back` (M-,). This fixes clojure-emacs#2499
I've created a PR to address this at #2757 |
Provide a means to control what window to use when jumping to a definition with `cider-jump-to`. By default, always use current window. Provide an option to use existing buffer in current frame when there is one that is showing the target buffer. (This is the old behaviour, but note that it does not work well with `cider-pop-back` (M-,). This fixes clojure-emacs#2499
Provide a means to control what window to use when jumping to a definition with `cider-jump-to`. By default, always use current window. This fixes clojure-emacs#2499
Provide a means to control what window to use when jumping to a definition with `cider-jump-to`. By default, always use current window. This fixes clojure-emacs#2499
Provide a means to control what window to use when jumping to a definition with `cider-jump-to`. By default, always use current window. This fixes clojure-emacs#2499
Provide a means to control what window to use when jumping to a definition with `cider-jump-to`. By default, always use current window. This fixes clojure-emacs#2499
Provide a means to control what window to use when jumping to a definition with `cider-jump-to`. By default, always use current window. This fixes clojure-emacs#2499
Provide a means to control what window to use when jumping to a definition with `cider-jump-to`. By default, always use current window. This fixes clojure-emacs#2499
Provide a means to control what window to use when jumping to a definition with `cider-jump-to`. By default, always use current window. This fixes clojure-emacs#2499
When I hit M-. or similar to find a definition, if the buffer containing the definition is already being displayed in another window of the current frame, CIDER switches to that window.
I find this annoying. I prefer that the current window always be used.
Would it be possible to have an option for this?
FWIW, I have a hack that gives me what I want. It arranges for
cider-jump-to
to callswitch-to-buffer
instead ofpop-to-buffer
:The text was updated successfully, but these errors were encountered: