From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Benjamin Andresen Newsgroups: gmane.emacs.help Subject: Re: moving around multiple buffers Date: Fri, 21 Aug 2009 18:56:01 +0200 Organization: [ posted via ] IN-Ulm Message-ID: <87prapnm1q.fsf@in-ulm.de> References: <7f4hieF2ip8t3U1@mid.individual.net> <87d46p90me.fsf@es.aau.dk> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1250926444 27521 80.91.229.12 (22 Aug 2009 07:34:04 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 22 Aug 2009 07:34:04 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Aug 22 09:33:58 2009 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1Mel6o-0004uy-M5 for geh-help-gnu-emacs@m.gmane.org; Sat, 22 Aug 2009 09:33:54 +0200 Original-Received: from localhost ([127.0.0.1]:56111 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mel6o-0003jx-1T for geh-help-gnu-emacs@m.gmane.org; Sat, 22 Aug 2009 03:33:54 -0400 Original-Path: news.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!news-2.dfn.de!news.dfn.de!news.uni-stuttgart.de!newsfeed.in-ulm.de!not-for-mail Original-Newsgroups: gnu.emacs.help,comp.emacs Original-Lines: 34 Original-X-Trace: news.in-ulm.de 5FCD44903AE9882AE6B0BB91E867D825 User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.50 (gnu/linux) Cancel-Lock: sha1:M2oSIs1wSuMPp/c7h22Gu4Limu4= Original-Xref: news.stanford.edu gnu.emacs.help:172205 comp.emacs:98627 X-Mailman-Approved-At: Sat, 22 Aug 2009 03:27:08 -0400 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:67381 Archived-At: Xah Lee writes: > On Aug 20, 10:50 pm, Torben Knudsen 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