[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: C-x C-o but in the other direction?
From: |
Evans Winner |
Subject: |
Re: C-x C-o but in the other direction? |
Date: |
Tue, 21 Apr 2009 15:58:46 -0600 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/23.0.90 (gnu/linux) |
glen stark <mail@nospam.glenstark.net> writes:
If typically run emacs with 3 windows open. I often
find myself having to do C-x C-o twice to get to the
counter clockwise window. Is there a 'select previous
window' command in emacs?
I am not sure, but you could do C-u -1 C-x o RET or make a
command that does that like:
(defun previous-window ()
"Select the previous window."
(interactive)
(other-window -1))
or something like that and bind it to a key.