From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Juri Linkov Newsgroups: gmane.emacs.devel Subject: Re: Add function to rotate/transpose all windows Date: Tue, 24 Dec 2024 09:07:46 +0200 Organization: LINKOV.NET Message-ID: <87msglr2zx.fsf@mail.linkov.net> References: <87setpdv21.fsf@gmail.com> <878qt8spp2.fsf@gmail.com> <0ce35c7a-8b28-4905-a6ab-caf50f2fc750@gmx.at> <87mshl2i6h.fsf@gmail.com> <9b460366-f34e-48f6-a680-e7fa5bc7f598@gmx.at> <87bjy03fql.fsf@gmail.com> <356d63bc-818c-428c-b31b-a0eb227b3a8a@gmx.at> <87o720gjst.fsf@gmail.com> <7dfe87a0-b367-47df-86df-f8fd95163fd6@gmx.at> <8734jbz8sb.fsf@gmail.com> <50ab6c0a-6afb-4727-9094-178668fc4f4e@gmx.at> <87zflfc3cd.fsf@gmail.com> <87y10ycxv6.fsf@gmail.com> <87mshbiiee.fsf@bauherren.ovh> <30c31060-6be4-4dab-8e49-c6f543821ea5@gmx.at> <87y10ecxk9.fsf@bauherren.ovh> <787e1cf0-810c-4eea-8d89-03ee83f67807@gmx.at> <87ikr97u86.fsf@bauherren.ovh> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="19907"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/31.0.50 (x86_64-pc-linux-gnu) Cc: martin rudalics , "eliz@gnu.org" , emacs-devel To: Pranshu Sharma Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Tue Dec 24 08:18:58 2024 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 1tPzBx-00053Y-QT for ged-emacs-devel@m.gmane-mx.org; Tue, 24 Dec 2024 08:18:57 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1tPzB1-0003QJ-Fl; Tue, 24 Dec 2024 02:17:59 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tPzAz-0003P1-Cj for emacs-devel@gnu.org; Tue, 24 Dec 2024 02:17:57 -0500 Original-Received: from relay8-d.mail.gandi.net ([217.70.183.201]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tPzAx-0000eu-9A; Tue, 24 Dec 2024 02:17:57 -0500 Original-Received: by mail.gandi.net (Postfix) with ESMTPSA id 9696A1BF205; Tue, 24 Dec 2024 07:17:48 +0000 (UTC) In-Reply-To: <87ikr97u86.fsf@bauherren.ovh> (Pranshu Sharma's message of "Tue, 24 Dec 2024 11:19:53 +1000") X-GND-Sasl: juri@linkov.net Received-SPF: pass client-ip=217.70.183.201; envelope-from=juri@linkov.net; helo=relay8-d.mail.gandi.net X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H2=-0.001, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, RCVD_IN_VALIDITY_SAFE_BLOCKED=0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 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-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:326970 Archived-At: > So the function names and file is now decided(Eli, do yo agree so > far?), we just need to finalise the bindings. > > Are you all fine with: > > - rotate-window-layout-clockwise: C-x w r > - rotate-window-layout-anticlockwise: C-x w C-r > - flip-window-layout-horizontally: Option 1: "C-x w h" > Option 2: "C-x w f" > - flip-window-layout-vertically: Option 1: "C-x w v" > Option 2: "C-x w C-f" > (Maybe we could use C-f for horizontal flip, depending on which one will > be used more) > - rotate-windows: None, for now > - rotate-windows-back None for rotate-windows? What about using the prefix 'C-x w l' for layout commands? Then: - rotate-window-layout-clockwise: C-x w l r - rotate-window-layout-anticlockwise: M-- C-x w l r (with negative argument) - flip-window-layout-horizontally: C-x w l h - flip-window-layout-vertically: C-x w l v - rotate-windows: C-x w r - rotate-windows-back: M-- C-x w r (with negative argument)