diff options
author | Christian Clason <c.clason@uni-graz.at> | 2023-02-05 17:59:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-05 17:59:18 +0100 |
commit | 23e34fe534d201a1323ab040cb2201d21fe865cc (patch) | |
tree | c02f60016323334964c4395c986f7da34c34b7e8 /runtime/lua/vim | |
parent | 5c4b503d3cb4a48d083bcf50d4932927e6eb749d (diff) | |
download | rneovim-23e34fe534d201a1323ab040cb2201d21fe865cc.tar.gz rneovim-23e34fe534d201a1323ab040cb2201d21fe865cc.tar.bz2 rneovim-23e34fe534d201a1323ab040cb2201d21fe865cc.zip |
vim-patch:9.0.1281: Cadence files are not recognized (#22130)
Problem: Cadence files are not recognized.
Solution: Recognize Cadence files. (Janez Podhostnik, closes vim/vim#11951)
https://github.com/vim/vim/commit/cb626a4692df7154be02b47d6089ec679e95cb44
Co-authored-by: Janez Podhostnik <janez.podhostnik@gmail.com>
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 bc30b3bd11..a18abf09ac 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -191,6 +191,7 @@ local extension = { qc = 'c', cabal = 'cabal', capnp = 'capnp', + cdc = 'cdc', cdl = 'cdl', toc = 'cdrtoc', cfc = 'cf', |