diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-09-09 18:48:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-09 18:48:12 +0200 |
commit | 9b0e1256e25d387bf65cb9baa1edd99fbc128724 (patch) | |
tree | 216990519c62fb6f877e2781987d3303049009c1 /runtime/lua/vim | |
parent | ad2d6a624b10a52cdcfb7fdd9d8b1be24b13ed83 (diff) | |
download | rneovim-9b0e1256e25d387bf65cb9baa1edd99fbc128724.tar.gz rneovim-9b0e1256e25d387bf65cb9baa1edd99fbc128724.tar.bz2 rneovim-9b0e1256e25d387bf65cb9baa1edd99fbc128724.zip |
vim-patch:9.0.0427: Drupal theme files are not recognized (#20138)
Problem: Drupal theme files are not recognized.
Solution: Use php filetype for Drupl theme files. Remove trailing spaces.
(Rodrigo Aguilera, closes vim/vim#11096)
https://github.com/vim/vim/commit/8995c4cd4e697141faf74da9a87e0c1221bfb161
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 12e6fa837b..6aa765ebaf 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -746,6 +746,7 @@ local extension = { php = 'php', phpt = 'php', phtml = 'php', + theme = 'php', pike = 'pike', pmod = 'pike', rcp = 'pilrc', |