aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-09-21 20:24:12 +0800
committerzeertzjq <zeertzjq@outlook.com>2024-09-21 20:25:07 +0800
commitac65e0f04b2790dcc5e947f45ea69808fd291548 (patch)
tree07839681d2ad47d7239623d32ca9814b9fed9dc2
parentd28be6fe692e90707534c1fd9ca57207a39c9f19 (diff)
downloadrneovim-ac65e0f04b2790dcc5e947f45ea69808fd291548.tar.gz
rneovim-ac65e0f04b2790dcc5e947f45ea69808fd291548.tar.bz2
rneovim-ac65e0f04b2790dcc5e947f45ea69808fd291548.zip
vim-patch:a0c14ef: runtime(filetype): tests: Test_filetype_detection() fails
Problem: tests: Test_filetype_detection() fails (after 9.1.0738) Solution: Add missing filetype detect patterns for *.SYSx and *.MODx https://github.com/vim/vim/commit/a0c14ef310acac62276b4ee51930d3246b11772e Co-authored-by: Christian Brabandt <cb@256bit.org>
-rw-r--r--runtime/lua/vim/filetype.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/lua/vim/filetype.lua b/runtime/lua/vim/filetype.lua
index df26df9e15..88609799bf 100644
--- a/runtime/lua/vim/filetype.lua
+++ b/runtime/lua/vim/filetype.lua
@@ -972,11 +972,13 @@ local extension = {
Sysx = 'rapid',
SysX = 'rapid',
SYSX = 'rapid',
+ SYSx = 'rapid',
modx = 'rapid',
modX = 'rapid',
Modx = 'rapid',
ModX = 'rapid',
MODX = 'rapid',
+ MODx = 'rapid',
rasi = 'rasi',
rbs = 'rbs',
rego = 'rego',