diff options
author | Christian Clason <c.clason@uni-graz.at> | 2023-05-29 10:25:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-29 10:25:05 +0200 |
commit | b8a2220f5eb32ead6b66f7c49b7e915883bf3539 (patch) | |
tree | 1efc7546d083d1c7b999ac938931886dacb3739d /runtime/lua/vim | |
parent | 9dd48f7832f4656af4a2579368641268bb6399e7 (diff) | |
download | rneovim-b8a2220f5eb32ead6b66f7c49b7e915883bf3539.tar.gz rneovim-b8a2220f5eb32ead6b66f7c49b7e915883bf3539.tar.bz2 rneovim-b8a2220f5eb32ead6b66f7c49b7e915883bf3539.zip |
vim-patch:9.0.1587: Corn config files are not recognized (#23807)
Problem: Corn config files are not recognized.
Solution: Add a pattern for Corn config files. (Jake Stanger, closes vim/vim#12449)
https://github.com/vim/vim/commit/05843e89601c03389a2d7978e7e16aec641a3dc4
Co-authored-by: Jake Stanger <mail@jstanger.dev>
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 57df621153..6990de3391 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -241,6 +241,7 @@ local extension = { copyright = function(path, bufnr) return require('vim.filetype.detect').copyright(bufnr) end, + corn = 'corn', csh = function(path, bufnr) return require('vim.filetype.detect').csh(path, bufnr) end, |