From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Gregory Heytings Newsgroups: gmane.emacs.devel Subject: Re: font-lock-fontify-block Date: Fri, 12 Mar 2021 08:28:36 +0000 Message-ID: <496380cc602598836e8f@heytings.org> References: <87a6sbg41o.fsf@gnus.org> <87lfatirk1.fsf@gnus.org> <83blbpmy2x.fsf@gnu.org> <837dmdmw60.fsf@gnu.org> <831rclmoy0.fsf@gnu.org> <83zgz9l9xw.fsf@gnu.org> <30f0a4188eb516fc37ed@heytings.org> <83wnucltxe.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset=us-ascii Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="13455"; mail-complaints-to="usenet@ciao.gmane.io" Cc: emacs-devel@gnu.org To: Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Fri Mar 12 09:29:17 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 1lKdAa-0003Po-Id for ged-emacs-devel@m.gmane-mx.org; Fri, 12 Mar 2021 09:29:16 +0100 Original-Received: from localhost ([::1]:56776 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lKdAZ-0003xy-L3 for ged-emacs-devel@m.gmane-mx.org; Fri, 12 Mar 2021 03:29:15 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:36476) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lKdA3-0003UQ-9s for emacs-devel@gnu.org; Fri, 12 Mar 2021 03:28:43 -0500 Original-Received: from heytings.org ([95.142.160.155]:56566) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lKd9z-00059L-Vu; Fri, 12 Mar 2021 03:28:42 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=heytings.org; s=20210101; t=1615537717; bh=WkUEV7eeoixg9CRJhIn9yk6jBcg0/ZtfHOBmAapRGac=; h=Date:From:To:cc:Subject:In-Reply-To:Message-ID:References:From; b=GhCwT91kGP9Iu0oeAm55IjD1IiitYnfYPDyyTb4EA2zsbR5oZiuYMI1rw9xq9vQ4v WSaCmPlux1N4OBqr1B814rEs5POVbXmAH8wCrxwZCXnJHoee6v9jc235KdvEJ9Q0s2 9RyVlU1VFejW5lMz6ZtAfkkk+ZW+4aCZ+q23gbMQlE4FppzIrK3VlQj3/lLMjFL4K1 60HPc2pGvkewSwdPYrloF//BOD532HV1FUX6sBwO04V4dwnJyKbh0oVA0wuJ2VGTUK fOLhOF0asIh2m8sFwJ4kOxjPrMLij0P89dYm2+QdedijwXmQYYABKfBgOCNrBYbqN1 T/V0R195Aw71Q== In-Reply-To: <83wnucltxe.fsf@gnu.org> Received-SPF: pass client-ip=95.142.160.155; envelope-from=gregory@heytings.org; helo=heytings.org X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, 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.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:266387 Archived-At: > > I guess 16 lines is really beyond anything I ever needed to deal with in > this use case, because I don't remember ever having such problems. > > "M-o M-o" is convenient here because I need to remember only a single > command to "fix" any issues with faces, whether it means re-fontify the > block or "un-fontify" it. I'm okay with any other command to perform > the same duty, as long as its key-binding is convenient to type ("C-x x > ..." is less convenient, because it requires me to release the Ctrl key > half-way through the sequence). > You can always rebind it to a key you find convenient in your .emacs file (e.g. C-F5). If you use that command often and really think a "C-x x ..." key binding in vanilla Emacs would not be sufficient, I would perhaps suggest C-M-|, which is close to C-M-\ = indent-region and would do something similar.