In Emacs we can scroll inactive window using certain commands
But not all details are listed in the manual.
C-M-v can scroll down the other window
my intention is to scroll up the other window, how could I do that ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Try C-M-S-v, which is
scroll-other-window-down.You can find such key bindings by doing C-h b (
describe-bindings) which populates the*Help*buffer with a list of all the key bindings and associated commands for the current buffer. A quick search through that forscroll-othershowed the binding you mentioned, as well as the one I listed.