You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
deadgrep is great software, you can use o to deadgrep-visit-result-other-window
But I don't see the typical C-o I see in other emacs packages/functions such as dired and list-buffers, where C-o shows the file in another buffer so you can select different files pretty fast
The text was updated successfully, but these errors were encountered:
pedro-nonfree
changed the title
[Feature Add typical C-o keybinding
[Feature Request] Add typical C-o keybinding : Make another window display that buffer.
Dec 4, 2024
;; used same terminology of (list-buffers) from Buffer-menu;; o Buffer-menu-other-window;; C-o Buffer-menu-switch-other-window
(defunmy/deadgrep-switch-other-window ()
"Make the other window show the result."
(interactive)
(deadgrep-visit-result-other-window)
(other-window -1))
(use-package deadgrep :ensuret:config
(define-key deadgrep-mode-map (kbd "C-o") 'my/deadgrep-switch-other-window))
deadgrep is great software, you can use
o
todeadgrep-visit-result-other-window
But I don't see the typical
C-o
I see in other emacs packages/functions such asdired
andlist-buffers
, whereC-o
shows the file in another buffer so you can select different files pretty fastThe text was updated successfully, but these errors were encountered: