From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Simon Josefsson Newsgroups: gmane.emacs.devel Subject: Re: make ctrl-+ increase font size? Date: Mon, 04 May 2009 14:44:03 +0200 Message-ID: <87ljpdt4vg.fsf@mocca.josefsson.org> References: <87prewesv8.fsf@mocca.josefsson.org> <87ocugn7cl.fsf@catnip.gol.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1241441105 2557 80.91.229.12 (4 May 2009 12:45:05 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 4 May 2009 12:45:05 +0000 (UTC) Cc: emacs-devel@gnu.org To: Miles Bader Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon May 04 14:44:55 2009 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1M0xXQ-0004oe-3x for ged-emacs-devel@m.gmane.org; Mon, 04 May 2009 14:44:52 +0200 Original-Received: from localhost ([127.0.0.1]:55155 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1M0xXP-0003ob-Cm for ged-emacs-devel@m.gmane.org; Mon, 04 May 2009 08:44:51 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1M0xWm-0003iv-RR for emacs-devel@gnu.org; Mon, 04 May 2009 08:44:12 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1M0xWk-0003ij-QD for emacs-devel@gnu.org; Mon, 04 May 2009 08:44:12 -0400 Original-Received: from [199.232.76.173] (port=43651 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1M0xWk-0003ig-Go for emacs-devel@gnu.org; Mon, 04 May 2009 08:44:10 -0400 Original-Received: from yxa-v.extundo.com ([83.241.177.39]:37571) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1M0xWh-00051i-TE; Mon, 04 May 2009 08:44:08 -0400 Original-Received: from c80-216-29-127.bredband.comhem.se ([80.216.29.127] helo=mocca.josefsson.org) by yxa-v.extundo.com with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.69) (envelope-from ) id 1M0xWe-0002he-VF; Mon, 04 May 2009 14:44:05 +0200 OpenPGP: id=B565716F; url=http://josefsson.org/key.txt Mail-Copies-To: nobody X-Hashcash: 1:22:090504:emacs-devel@gnu.org::jx6XLjUeCeaPSa9U:4g1 X-Hashcash: 1:22:090504:miles@gnu.org::HxuEu+LMrIv3Fd8m:kTJR In-Reply-To: <87ocugn7cl.fsf@catnip.gol.com> (Miles Bader's message of "Wed, 29 Apr 2009 00:08:58 +0900") User-Agent: Gnus/5.110011 (No Gnus v0.11) Emacs/23.0.93 (gnu/linux) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 1) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:110635 Archived-At: Miles Bader writes: > Simon Josefsson writes: >> Ctrl-+ seems unused right now. Can we make it a short-cut for >> increasing the font size? >> >> Ctrl-+ is used to increase the font size in many GNOME applications (and >> other applications too) so it would be nice to be consistent here. >> >> Ctrl-- is already taken, but maybe it isn't that important? > > There was already a discussion about this, leading to the current > compromise bindings of C-x C-+ (etc). You can search the emacs-devel > list for that if you want. Ah, sorry I had missed that. I have put (define-key global-map [?\C-+] 'text-scale-increase) (define-key global-map [?\C--] 'text-scale-decrease) in my ~/.emacs and can live with it, although I suspect the concern will come up again in the future. /Simon