From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Bastien Newsgroups: gmane.emacs.devel Subject: Re: 26.1-rc1: global-set-key suggestions Date: Sun, 29 Apr 2018 12:49:57 +0200 Organization: GNU Message-ID: <87604a70dm.fsf@gnu.org> References: <834ljuu3yo.fsf@gnu.org> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: blaine.gmane.org 1524998883 12539 195.159.176.226 (29 Apr 2018 10:48:03 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Sun, 29 Apr 2018 10:48:03 +0000 (UTC) User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux) Cc: Eli Zaretskii , "emacs-devel@gnu.org" To: Van L Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Apr 29 12:47:58 2018 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fCjs6-00038z-Mj for ged-emacs-devel@m.gmane.org; Sun, 29 Apr 2018 12:47:58 +0200 Original-Received: from localhost ([::1]:55073 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fCjuD-00077c-8v for ged-emacs-devel@m.gmane.org; Sun, 29 Apr 2018 06:50:09 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:46609) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fCju7-00077M-5B for emacs-devel@gnu.org; Sun, 29 Apr 2018 06:50:03 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fCju4-0002O8-4l for emacs-devel@gnu.org; Sun, 29 Apr 2018 06:50:03 -0400 Original-Received: from fencepost.gnu.org ([2001:4830:134:3::e]:42207) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fCju4-0002O4-19; Sun, 29 Apr 2018 06:50:00 -0400 Original-Received: from [78.192.157.63] (port=58818 helo=bzg.fr) by fencepost.gnu.org with esmtpsa (TLS1.2:DHE_RSA_AES_256_CBC_SHA256:256) (Exim 4.82) (envelope-from ) id 1fCju2-0005Yj-QV; Sun, 29 Apr 2018 06:49:59 -0400 Original-Received: by bzg.fr (Postfix, from userid 1000) id 4F79738CEA8; Sun, 29 Apr 2018 12:49:57 +0200 (CEST) In-Reply-To: (Van L.'s message of "Sat, 28 Apr 2018 23:14:56 -0400") X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:224947 Archived-At: Hi, Van L writes: > The bindings for font size change are :- > > C-x C-+ > C-x C-- I interactively change the text size often enough to use these custom keybindings: (global-set-key (kbd "C-+") 'text-scale-increase) (global-set-key (kbd "C--") 'text-scale-decrease) (global-set-key (kbd "C-=") 'text-scale-adjust) which is what I also use in other applications (e.g. Firefox) on a GNU/Linux machine. I thought C-+/- was pretty standard. C-+ and C-= are free in Emacs, but C-- is not, emulating C-u -, but I don't really mind having to type C-u - instead of C-- when I need. 2 cents, -- Bastien