From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: =?utf-8?Q?K=C3=A9vin_Le_Gouguec?= Newsgroups: gmane.emacs.devel Subject: Re: Concern about new binding. Date: Fri, 12 Feb 2021 18:28:49 +0100 Message-ID: <87y2ftry9a.fsf@gmail.com> References: <20210204070033.pm4ido4hq7a6twif@Ergus> <83sg6brhyg.fsf@gnu.org> <87a6sjpyqs.fsf@gnus.org> <838s83ra3q.fsf@gnu.org> <87mtwjocn7.fsf@gnus.org> <87ft2bim5q.fsf@gmail.com> <87blczij90.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="1851"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) To: emacs-devel@gnu.org Cancel-Lock: sha1:Z/8NhA5seT6NqwNOVWbqP2KDga8= Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Fri Feb 12 18:32:47 2021 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1lAcJC-0000NP-S6 for ged-emacs-devel@m.gmane-mx.org; Fri, 12 Feb 2021 18:32:46 +0100 Original-Received: from localhost ([::1]:52568 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lAcJB-0006MM-RB for ged-emacs-devel@m.gmane-mx.org; Fri, 12 Feb 2021 12:32:45 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:46320) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lAcFW-0004FM-Ou for emacs-devel@gnu.org; Fri, 12 Feb 2021 12:28:58 -0500 Original-Received: from ciao.gmane.io ([116.202.254.214]:40714) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lAcFV-000476-BJ for emacs-devel@gnu.org; Fri, 12 Feb 2021 12:28:58 -0500 Original-Received: from list by ciao.gmane.io with local (Exim 4.92) (envelope-from ) id 1lAcFT-0006XF-EF for emacs-devel@gnu.org; Fri, 12 Feb 2021 18:28:55 +0100 X-Injected-Via-Gmane: http://gmane.org/ Received-SPF: pass client-ip=116.202.254.214; envelope-from=ged-emacs-devel@m.gmane-mx.org; helo=ciao.gmane.io X-Spam_score_int: 5 X-Spam_score: 0.5 X-Spam_bar: / X-Spam_report: (0.5 / 5.0 requ) BAYES_00=-1.9, DKIM_ADSP_CUSTOM_MED=0.001, FORGED_GMAIL_RCVD=1, FREEMAIL_FORGED_FROMDOMAIN=0.25, FREEMAIL_FROM=0.001, HEADER_FROM_DIFFERENT_DOMAINS=0.25, NML_ADSP_CUSTOM_MED=0.9, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.23 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-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:264531 Archived-At: Jean Louis writes: >> I've used Magit daily for years, and I call magit-status through C-x g >> dozens of times an hour. It is very much ingrained in my muscle memory, >> and it would take me a lot of frustrating misinputs to retrain myself to >> use another binding. > > You could upgrade the muscle memory and just switch to C-c g or > something else. (Note that, in the part of the message you left out, I said I wouldn't mind Emacs maintainers binding C-x g to something new, as I consider it to be their prerogative.) > Try it out. Excercise few times. Maybe you discover something new. FWIW, I've spent this past week with (my/define-prefix-command my/magit-map "Keymap for Magit commands." '(("c" magit-file-dispatch) ("f" magit-find-file) ("g" magit-status) ("x" magit-dispatch))) (global-set-key (kbd "C-c g") 'my/magit-map) … and been none the worse for wear. What "frustrating misinputs" I had were mostly due to forgetting to "git pull" my dotfiles on another computer.