help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: How to toggle to buffer previously selected ?


From: Martin Marcher
Subject: Re: How to toggle to buffer previously selected ?
Date: Fri, 8 Feb 2008 20:08:38 +0100

On 2/8/08, Joel J. Adamson <jadamson@partners.org> wrote:
> Window configurations are not sacred and manipulating them is easy.  I
> could make this into "exchange-windows" but it's easy enough as it is
> (the above takes about 1 second on a slow day).

nice I just added the following:

;; Window moving
(global-set-key (kbd "C-<up>") 'windmove-up)
(global-set-key (kbd "C-<down>") 'windmove-down)
(global-set-key (kbd "C-<left>") 'windmove-left)
(global-set-key (kbd "C-<right>") 'windmove-right)

;; Yes I switched from vim :)
(global-set-key (kbd "C-c k") 'windmove-up)
(global-set-key (kbd "C-c j") 'windmove-down)
(global-set-key (kbd "C-c h") 'windmove-left)
(global-set-key (kbd "C-c l") 'windmove-right)


-- 
http://noneisyours.marcher.name
https://twitter.com/MartinMarcher
http://www.xing.com/profile/Martin_Marcher
http://www.linkedin.com/in/martinmarcher

You are not free to read this message,
by doing so, you have violated my licence
and are required to urinate publicly. Thank you.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]