From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Tim Landscheidt Newsgroups: gmane.emacs.help Subject: Indentation of hashes (?) in perl-mode Date: Wed, 19 Jun 2024 10:17:54 +0000 Organization: https://www.tim-landscheidt.de/ Message-ID: <878qz1grsd.fsf@vagabond.tim-landscheidt.de> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="30620"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Wed Jun 19 12:18:33 2024 Return-path: Envelope-to: geh-help-gnu-emacs@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 1sJsOf-0007mV-OT for geh-help-gnu-emacs@m.gmane-mx.org; Wed, 19 Jun 2024 12:18:33 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1sJsOC-0004tQ-Va; Wed, 19 Jun 2024 06:18:05 -0400 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 1sJsOB-0004tI-0m for help-gnu-emacs@gnu.org; Wed, 19 Jun 2024 06:18:03 -0400 Original-Received: from gavdos.tim-landscheidt.de ([2a01:4f8:1c0c:4bd6::1]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1sJsO8-0005kB-D7 for help-gnu-emacs@gnu.org; Wed, 19 Jun 2024 06:18:02 -0400 Original-Received: from [146.0.233.147] (port=44214 helo=vagabond) by gavdos.tim-landscheidt.de with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1sJsO2-005Ttr-0L for help-gnu-emacs@gnu.org; Wed, 19 Jun 2024 10:17:56 +0000 Received-SPF: pass client-ip=2a01:4f8:1c0c:4bd6::1; envelope-from=tim@tim-landscheidt.de; helo=gavdos.tim-landscheidt.de X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.help:146914 Archived-At: Hi, when writing anonymous subroutines for Find::File::find, I get the following indentation with Emacs 29.3's perl-mode: | find ({ wanted => sub { | return; | }, follow => 1 }, '/tmp'); IMHO it would seem more natural if the last line's opening bracket was in the first column (i. e., no indentation). A similar question was asked on Stack Exchange (https://emacs.stackexchange.com/questions/78606/perl-mode-brace-indentation) with the additional condition "without switching to cperl-mode". Is it possible to make perl-mode indent these structures more naturally? (I'm open to other ways to phrase this code as well.) TIA, Tim