diff options
author | Amaan Qureshi <amaanq12@gmail.com> | 2023-02-27 15:08:31 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-27 21:08:31 +0100 |
commit | 2a8e6a2f1a8e047a8efd84764d9a332bbd6ae96d (patch) | |
tree | a865093c882d7d81fae6b23feed9665c7ed790b6 /runtime/lua | |
parent | f64098a2df774c79dd454f63ac491570cdcaf2b2 (diff) | |
download | rneovim-2a8e6a2f1a8e047a8efd84764d9a332bbd6ae96d.tar.gz rneovim-2a8e6a2f1a8e047a8efd84764d9a332bbd6ae96d.tar.bz2 rneovim-2a8e6a2f1a8e047a8efd84764d9a332bbd6ae96d.zip |
vim-patch:9.0.1360: Cue files are not recognized (#22439)
Problem: Cue files are not recognized.
Solution: Add patterns for Cue files. (Amaan Qureshi, closes vim/vim#12067)
https://github.com/vim/vim/commit/80c5b2c0f78b24e52c73bb162dda3ad85acd7e82
Diffstat (limited to 'runtime/lua')
-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 a4e078fd04..256c053801 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -276,6 +276,7 @@ local extension = { feature = 'cucumber', cuh = 'cuda', cu = 'cuda', + cue = 'cue', pld = 'cupl', si = 'cuplsim', cyn = 'cynpp', |