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

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

Re: moving around multiple buffers


From: Benjamin Andresen
Subject: Re: moving around multiple buffers
Date: Fri, 21 Aug 2009 18:56:01 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.50 (gnu/linux)

Xah Lee <xahlee@gmail.com> writes:

> On Aug 20, 10:50 pm, Torben Knudsen <t...@es.aau.dk> wrote:
[snip]
>> I use something similar.  My idea is to stay close to original emacs
>> bindings but to avoid to many key strokes.
>>
>> ;;; Window splitting
>> (global-set-key (kbd "M-3") 'split-window-horizontally) ; was digit-argument
>> (global-set-key (kbd "M-2") 'split-window-vertically) ; was digit-argument
>> (global-set-key (kbd "M-1") 'delete-other-windows) ; was digit-argument
>> (global-set-key (kbd "M-0") 'delete-window) ; was digit-argument
>> (global-set-key (kbd "M-o") 'other-window) ; was prefix
>> ;; Remove locale key binding of M-o in dired
>> (add-hook 'dired-mode-hook 'my-dired-mode-hook)
>> (defun my-dired-mode-hook ()
>>   (define-key dired-mode-map (kbd "M-o") nil)) ; was dired-omit-mode
>
> umm.. that code looks like from
> http://code.google.com/p/ergoemacs/

It doesn't. None of these lines appear as they are in ergoemacs. Also
that statement is completely ludicrous, it's a few keybindings...

Or is your claim that because he is binding keys using `global-set-key' he is
somehow plagiarizing ergoemacs?

I have this in my init.el as well, where do I have to send my royalties? ;-)
(global-set-key (kbd "M-o") 'other-window)

>  Xah

br,
benny


reply via email to

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