all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#70718: [PATCH] Add font-locking for for_statement variable in python-ts-mode
@ 2024-05-02 14:10 Noah Peart
  2024-05-09  4:33 ` Yuan Fu
  0 siblings, 1 reply; 2+ messages in thread
From: Noah Peart @ 2024-05-02 14:10 UTC (permalink / raw)
  To: 70718


[-- Attachment #1.1: Type: text/plain, Size: 803 bytes --]

Tags: patch


Adds font-locking for identifier in for_statement in python-ts-mode.

This covers the simple case:

    for i in range(0)
    #   ^ font-lock-variable-name-face



In GNU Emacs 30.0.50 (build 1, x86_64-pc-linux-gnu, GTK+ Version
3.24.33, cairo version 1.16.0) of 2024-04-30 built on noah-X580VD
Repository revision: c00105626ace43919706819da4057a358e62bafe
Repository branch: master
Windowing system distributor 'The X.Org Foundation', version 11.0.12101004
System Description: Ubuntu 22.04.4 LTS

Configured using:
 'configure --prefix=/usr/local --with-modules --with-tree-sitter
--with-threads --with-x-toolkit=gtk3 --with-xwidgets --with-gnutls
--with-json --with-mailutils --with-jpeg --with-png --with-rsvg
--with-tiff --with-xml2 --with-xpm --with-imagemagick CC=gcc-12
CXX=gcc-12'

[-- Attachment #1.2: Type: text/html, Size: 941 bytes --]

[-- Attachment #2: 0001-Add-font-locking-for-for_statement-variable-in-pytho.patch --]
[-- Type: text/x-patch, Size: 1017 bytes --]

From 2168b2c788057d1da6f5c330a465cdfc1f9e66f1 Mon Sep 17 00:00:00 2001
From: Noah Peart <noah.v.peart@gmail.com>
Date: Thu, 2 May 2024 06:58:34 -0700
Subject: [PATCH] Add font-locking for for_statement variable in python-ts-mode

* lisp/progmodes/python.el (python--treesit-settings): Add
font-lock query for for_statement variable in assignment feature.
---
 lisp/progmodes/python.el | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index 5ba185bc60c..13e243be208 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -1251,6 +1251,7 @@ python--treesit-settings
                            @font-lock-variable-name-face)
      (named_expression name: (identifier)
                        @font-lock-variable-name-face)
+     (for_statement left: (identifier) @font-lock-variable-name-face)
      (pattern_list [(identifier)
                     (list_splat_pattern (identifier))]
                    @font-lock-variable-name-face)
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#70718: [PATCH] Add font-locking for for_statement variable in python-ts-mode
  2024-05-02 14:10 bug#70718: [PATCH] Add font-locking for for_statement variable in python-ts-mode Noah Peart
@ 2024-05-09  4:33 ` Yuan Fu
  0 siblings, 0 replies; 2+ messages in thread
From: Yuan Fu @ 2024-05-09  4:33 UTC (permalink / raw)
  To: Noah Peart; +Cc: 70718-done


Noah Peart <noah.v.peart@gmail.com> writes:

> Tags: patch
>
> Adds font-locking for identifier in for_statement in python-ts-mode.
>
> This covers the simple case:
>
>     for i in range(0)
>     #   ^ font-lock-variable-name-face

Merged, thanks!

Yuan





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-05-09  4:33 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-02 14:10 bug#70718: [PATCH] Add font-locking for for_statement variable in python-ts-mode Noah Peart
2024-05-09  4:33 ` Yuan Fu

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.