From d9ba8dbabbddfc8a5a870fbaafdb1989e00e5603 Mon Sep 17 00:00:00 2001 From: Jesse Portnoy Date: Mon, 17 Jul 2023 14:10:26 +0100 Subject: [PATCH] .git/config is just an INI file and the lexer for INI is acutally better so... deleting. --- syntax_files/git-config.yaml | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 syntax_files/git-config.yaml diff --git a/syntax_files/git-config.yaml b/syntax_files/git-config.yaml deleted file mode 100644 index bfd52e8..0000000 --- a/syntax_files/git-config.yaml +++ /dev/null @@ -1,14 +0,0 @@ -filetype: git-config - -detect: - filename: "git(config|modules)$|\\.git/config$" - -rules: - - constant: "\\<(true|false)\\>" - - keyword: "^[[:space:]]*[^=]*=" - - constant: "^[[:space:]]*\\[.*\\]$" - - constant: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'" - - comment: - start: "#" - end: "$" - rules: []