All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Dhruv Arora via GitGitGadget" <gitgitgadget@gmail.com>
To: git@vger.kernel.org
Cc: Dhruv Arora <a_dhruv@outlook.com>, Dhruv Arora <a_dhruv@outlook.com>
Subject: [PATCH 1/2] userdiff: adding typescript pattern
Date: Sat, 28 Mar 2026 21:40:03 +0000	[thread overview]
Message-ID: <f3bb69dbfc628d88075ee9a5a9b549e73cb487fe.1774734004.git.gitgitgadget@gmail.com> (raw)
In-Reply-To: <pull.2251.git.git.1774734004.gitgitgadget@gmail.com>

From: Dhruv Arora <a_dhruv@outlook.com>

Add builtin userdiff pattern for TypeScript files.
Recognizes function declarations, class definitions,
arrow functions, and method definitions.

Handles common modifiers like export, async, static, etc..

Signed-off-by: Dhruv Arora <a_dhruv@outlook.com>
---
 userdiff.c | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/userdiff.c b/userdiff.c
index fe710a68bf..086e3fa002 100644
--- a/userdiff.c
+++ b/userdiff.c
@@ -337,6 +337,19 @@ PATTERNS("ruby",
 	 "(@|@@|\\$)?[a-zA-Z_][a-zA-Z0-9_]*"
 	 "|[-+0-9.e]+|0[xXbB]?[0-9a-fA-F]+|\\?(\\\\C-)?(\\\\M-)?."
 	 "|//=?|[-+*/<>%&^|=!]=|<<=?|>>=?|===|\\.{1,3}|::|[!=]~"),
+PATTERNS("typescript",
+	/* Starting with optional whitespace */
+	"^[ \t]*"
+	/* Followed by an optional export and/or async keyword */
+	"((export[ \t]+)?(async[ \t]+)?"
+	/* Followed by either a function or class declaration */
+	"((function|class)[ \t]+[a-zA-Z_][a-zA-Z0-9_]*[^{]*)"
+	/* or */
+	"|"
+	/* a variable declaration with const, let, or var */
+	"([ \t]*(const|let|var)[ \t]+[a-zA-Z_][a-zA-Z0-9_]*[ \t]*=))",
+	/* -- */
+	"[a-zA-Z_][a-zA-Z0-9_]*"),
 PATTERNS("rust",
 	 "^[\t ]*((pub(\\([^\\)]+\\))?[\t ]+)?((async|const|unsafe|extern([\t ]+\"[^\"]+\"))[\t ]+)?(struct|enum|union|mod|trait|fn|impl|macro_rules!)[< \t]+[^;]*)$",
 	 /* -- */
-- 
gitgitgadget


  reply	other threads:[~2026-03-28 21:40 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-28 21:40 [PATCH 0/2] [GSoC] userdiff: adding typescript pattern Dhruv Arora via GitGitGadget
2026-03-28 21:40 ` Dhruv Arora via GitGitGadget [this message]
2026-03-28 21:40 ` [PATCH 2/2] fix(userdiff): sorted pattern and tests Dhruv Arora via GitGitGadget
2026-03-29  0:42 ` [PATCH 0/2] [GSoC] userdiff: adding typescript pattern Junio C Hamano
2026-03-29  9:31 ` Johannes Sixt
2026-03-29 14:39   ` Spelling JavaScript (was: Re: [PATCH 0/2] [GSoC] userdiff: adding typescript pattern) Ben Knoble

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=f3bb69dbfc628d88075ee9a5a9b549e73cb487fe.1774734004.git.gitgitgadget@gmail.com \
    --to=gitgitgadget@gmail.com \
    --cc=a_dhruv@outlook.com \
    --cc=git@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.