Skip to content

How to switch info windows in terminal #126

Answered by achrinza
jack2gs asked this question in Q&A
Discussion options

You must be logged in to vote

Apologies for necroposting. For anyone that has the same question,

Use C-x o (bound to other-window) to cycle between windows; My personal notes has a section for window-related keybindings that you may find helpful. These StackExchange answers provide alternatives to the built-in other-window.

Use TAB and Shift-TAB to cycle between the buffers in the window group:

dape/dape.el

Lines 3389 to 3395 in 8a9f5ae

(defvar dape-info-parent-mode-map
(let ((map (make-sparse-keymap)))
(define-key map (kbd "<backtab>")
(lambda () (interactive) (dape--info-buffer-tab t)))
(define-key map "\t" 'dape--info-buffer-tab)
map)
"Keymap for `dape-info-parent-mode'.")

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@jack2gs
Comment options

Answer selected by jack2gs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants