diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-04-07 20:24:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-07 20:24:55 +0200 |
commit | 8c25dbff468a6360ac8e22ba1e3fec659db16ab8 (patch) | |
tree | 8412c5e28b6cb1e6d9e4cfa8fb990f7aa8743927 /runtime/lua/vim | |
parent | 0d2674a3c5a6472c425355a29183dcf221a6409b (diff) | |
download | rneovim-8c25dbff468a6360ac8e22ba1e3fec659db16ab8.tar.gz rneovim-8c25dbff468a6360ac8e22ba1e3fec659db16ab8.tar.bz2 rneovim-8c25dbff468a6360ac8e22ba1e3fec659db16ab8.zip |
vim-patch:8.2.4708: PHP test files are not recognized (#18025)
Problem: PHP test files are not recognized.
Solution: Add the *.phpt pattern. (Julien Voisin, closes vim/vim#10112)
https://github.com/vim/vim/commit/177847e67a495f80a15b6dfd0a3fcd151b44249e
Diffstat (limited to 'runtime/lua/vim')
-rw-r--r-- | runtime/lua/vim/filetype.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/lua/vim/filetype.lua b/runtime/lua/vim/filetype.lua index 0466057d72..6d8f734bed 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -457,6 +457,7 @@ local extension = { al = "perl", ctp = "php", php = "php", + phpt = "php", phtml = "php", pike = "pike", pmod = "pike", |