From: Christian Clason Date: Sun, 18 Jan 2026 21:03:02 +0000 (+0000) Subject: patch 9.1.2094: filetype: tiger files are not recognized X-Git-Tag: v9.1.2094^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eb53ed5de01cfc4effc1825ad710999172c138ab;p=thirdparty%2Fvim.git patch 9.1.2094: filetype: tiger files are not recognized Problem: filetype: tiger files are not recognized Solution: Detect *.tig files as tiger filetype (Christian Clason). Reference: - https://www.cs.princeton.edu/~appel/modern/ closes: #19202 Signed-off-by: Christian Clason Signed-off-by: Christian Brabandt --- diff --git a/runtime/autoload/dist/ft.vim b/runtime/autoload/dist/ft.vim index 0a65aa9085..3f3fe971a5 100644 --- a/runtime/autoload/dist/ft.vim +++ b/runtime/autoload/dist/ft.vim @@ -2827,6 +2827,8 @@ const ft_from_ext = { "txi": "texinfo", # Thrift (Apache) "thrift": "thrift", + # Tiger + "tig": "tiger", # TLA+ "tla": "tla", # TPP - Text Presentation Program diff --git a/src/testdir/test_filetype.vim b/src/testdir/test_filetype.vim index 4ae9b7b025..625a4f90ad 100644 --- a/src/testdir/test_filetype.vim +++ b/src/testdir/test_filetype.vim @@ -886,6 +886,7 @@ def s:GetFilenameChecks(): dict> tf: ['file.tf', '.tfrc', 'tfrc'], thrift: ['file.thrift'], tidy: ['.tidyrc', 'tidyrc', 'tidy.conf'], + tiger: ['file.tig'], tilde: ['file.t.html'], tla: ['file.tla'], tli: ['file.tli'], diff --git a/src/version.c b/src/version.c index a5a3146d9e..fe5a71b227 100644 --- a/src/version.c +++ b/src/version.c @@ -734,6 +734,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2094, /**/ 2093, /**/