diff options
author | Christian Clason <c.clason@uni-graz.at> | 2024-05-01 18:46:10 +0200 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2024-05-02 00:37:16 +0200 |
commit | 9e2f378b6d255cd4b02a39b1a1dc5aea2df1a84c (patch) | |
tree | 2048181759b07f59fb636d1175063fe5ddb7741b /runtime/lua/vim | |
parent | e778e0116198470ba037b9426f4ff7fa5cb7f880 (diff) | |
download | rneovim-9e2f378b6d255cd4b02a39b1a1dc5aea2df1a84c.tar.gz rneovim-9e2f378b6d255cd4b02a39b1a1dc5aea2df1a84c.tar.bz2 rneovim-9e2f378b6d255cd4b02a39b1a1dc5aea2df1a84c.zip |
vim-patch:9.1.0386: filetype: stylus files not recognized
Problem: filetype: stylus files not recognized
Solution: Detect '*.styl' and '*.stylus' as stylus filetype,
include indent, filetype and syntax plugin
(Philip H)
closes: vim/vim#14656
https://github.com/vim/vim/commit/2d919d2744a99c9bb9e79984e85b8e8f5ec14c07
Co-authored-by: Philip H <47042125+pheiduck@users.noreply.github.com>
Diffstat (limited to 'runtime/lua/vim')
-rw-r--r-- | runtime/lua/vim/filetype.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/lua/vim/filetype.lua b/runtime/lua/vim/filetype.lua index 3cb634256b..77b3d29d01 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -1015,6 +1015,8 @@ local extension = { mata = 'stata', ado = 'stata', stp = 'stp', + styl = 'stylus', + stylus = 'stylus', quark = 'supercollider', sface = 'surface', svelte = 'svelte', |