From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Xah Lee Newsgroups: gmane.emacs.help Subject: Re: moving around multiple buffers Date: Fri, 21 Aug 2009 19:35:16 -0700 (PDT) Organization: http://groups.google.com Message-ID: <8f8be01c-daaa-4e18-b24d-a4e56d6c1a22@y4g2000prf.googlegroups.com> References: <7f4hieF2ip8t3U1@mid.individual.net> <87d46p90me.fsf@es.aau.dk> <87prapnm1q.fsf@in-ulm.de> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1250926772 28099 80.91.229.12 (22 Aug 2009 07:39:32 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 22 Aug 2009 07:39:32 +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:39:25 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 1MelC8-0006Ti-3r for geh-help-gnu-emacs@m.gmane.org; Sat, 22 Aug 2009 09:39:24 +0200 Original-Received: from localhost ([127.0.0.1]:45634 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MelC7-0000Te-J3 for geh-help-gnu-emacs@m.gmane.org; Sat, 22 Aug 2009 03:39:23 -0400 Original-Path: news.stanford.edu!newsfeed.stanford.edu!postnews.google.com!y4g2000prf.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help,comp.emacs Original-Lines: 33 Original-NNTP-Posting-Host: 76.102.12.87 Original-X-Trace: posting.google.com 1250908516 19692 127.0.0.1 (22 Aug 2009 02:35:16 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Sat, 22 Aug 2009 02:35:16 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: y4g2000prf.googlegroups.com; posting-host=76.102.12.87; posting-account=bRPKjQoAAACxZsR8_VPXCX27T2YcsyMA User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US) AppleWebKit/530.5 (KHTML, like Gecko) Chrome/2.0.172.39 Safari/530.5, gzip(gfe), gzip(gfe) Original-Xref: news.stanford.edu gnu.emacs.help:172222 comp.emacs:98628 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:67387 Archived-At: On Aug 21, 9:56 am, Benjamin Andresen wrote: > 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. look at old versions. Go to code.google.com, download tab, then in the search, choose All Downloads. That will show older versions. i noticed in many if not most tech geeker's projects hosted on google code, they don't bother to mark older version as deprecated. So, their download pages shows ALL the past versions. It kinda makes the page full and glorious, and shows the download numbers. But i think its silly and unhelpful... Xah