From 6daf53220ac560be1f1f966aa97400f38d3ecf01 Mon Sep 17 00:00:00 2001 From: Andreas Date: Fri, 12 Dec 2025 01:37:29 +0100 Subject: [PATCH] Add additional path suffixes for XML configuration This will add support for common .NET ecosystem files that are xml based. --- languages/xml/config.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/languages/xml/config.toml b/languages/xml/config.toml index dd1a398..cb574bb 100644 --- a/languages/xml/config.toml +++ b/languages/xml/config.toml @@ -1,6 +1,6 @@ name = "XML" grammar = "xml" -path_suffixes = ["xml"] +path_suffixes = ["xml", "csproj", "fsproj", "vbproj", "slnx"] first_line_pattern = '^<.*xml' block_comment = [""] brackets = [{ start = "<", end = ">", close = true, newline = true }]