From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Andrew Choi Newsgroups: gmane.emacs.help Subject: Re: Is Emacs on Aqua crippleware or is it just broken? Date: Tue, 06 May 2003 18:28:54 GMT Organization: Shaw Residential Internet Sender: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: <39d9c156.0305042200.1639a252@posting.google.com> <39d9c156.0305060558.7cba26d9@posting.google.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1052246236 19498 80.91.224.249 (6 May 2003 18:37:16 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Tue, 6 May 2003 18:37:16 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Tue May 06 20:37:15 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19D7Eb-0004gW-00 for ; Tue, 06 May 2003 20:32:13 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 19D7D7-00071X-07 for gnu-help-gnu-emacs@m.gmane.org; Tue, 06 May 2003 14:30:41 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!headwall.stanford.edu!newshub.sdsu.edu!news-hog.berkeley.edu!ucberkeley!cyclone.bc.net!sjc70.webusenet.com!news.webusenet.com!pd2nf1so.cg.shawcable.net!residential.shaw.ca!news1.calgary.shaw.ca.POSTED!not-for-mail X-Trace-PostClient-IP: 68.144.207.94 Original-Newsgroups: gnu.emacs.help,comp.sys.mac.apps Original-Lines: 17 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3.50 Original-NNTP-Posting-Host: 24.71.223.147 Original-X-Complaints-To: abuse@shaw.ca Original-X-Trace: news1.calgary.shaw.ca 1052245734 24.71.223.147 (Tue, 06 May 2003 12:28:54 MDT) Original-NNTP-Posting-Date: Tue, 06 May 2003 12:28:54 MDT Original-Xref: shelby.stanford.edu gnu.emacs.help:112852 comp.sys.mac.apps:360674 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:9347 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:9347 Barry Margolin writes: > I suggest that you also support standard MacOS behavior whenever it doesn't > conflict with normal Emacs behavior. So if Command isn't being used as > Meta, you should support the standard shortcuts: Cmd-Q for > save-buffers-kill-emacs, Cmd-X/C/V for kill-region/kill-ring-save/yank, > Cmd-O/S for find-file/save-buffer, etc. When mac-command-key-is-meta is nil the Mac command key is recognized by Emacs as the Alt modifier. So, by putting something like (global-set-key [?\A-x] 'kill-region) (global-set-key [?\A-c] 'kill-ring-save) (global-set-key [?\A-v] 'yank) ... in a startup file, you'll have the behavior you desire.