Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

emacs scroll other window up

Tags:

emacs

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 ?

like image 238
zinking Avatar asked Apr 24 '12 02:04

zinking


People also ask

How do I scroll into another window in Emacs?

On many terminals you can do M-PageUp and M-PageDn to scroll the other window. It's nice if you're already used to using PageUp/PageDn for scrolling. FWIW, the default bindings for M-PageUp (i.e. M-<prior> ) and M-PageDown (i.e. M-<next> ) are scroll-other-window and scroll-other-window-down .

How do I scroll up in Emacs?

The commands M-x scroll-up-line and M-x scroll-down-line scroll the current window by one line at a time.

How do I switch from one buffer to another in Emacs?

To move between the buffers, type C-x b. Emacs shows you a default buffer name. Press Enter if that's the buffer you want, or type the first few characters of the correct buffer name and press Tab. Emacs fills in the rest of the name.


1 Answers

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 for scroll-other showed the binding you mentioned, as well as the one I listed.

like image 81
Trey Jackson Avatar answered Oct 14 '22 04:10

Trey Jackson