aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim
diff options
context:
space:
mode:
authorsmjonas <jonas.strittmatter@gmx.de>2022-07-06 01:26:18 +0200
committersmjonas <jonas.strittmatter@gmx.de>2022-07-06 01:33:45 +0200
commit78300a1587dc43a363744da28f6d5e4ef40ca0bb (patch)
treee028cc080a967b5a45f0b5506644f2602ba92e2b /runtime/lua/vim
parent8b7399782e7054fa76b745f51f742dfc5236902d (diff)
downloadrneovim-78300a1587dc43a363744da28f6d5e4ef40ca0bb.tar.gz
rneovim-78300a1587dc43a363744da28f6d5e4ef40ca0bb.tar.bz2
rneovim-78300a1587dc43a363744da28f6d5e4ef40ca0bb.zip
vim-patch:9.0.0042: missing change for filetype detection
Problem: Missing change for filetype detection. Solution: Include change to detect guile from shebang line. https://github.com/vim/vim/commit/324478037923feef1eb8a771648e38ade9e5e05a
Diffstat (limited to 'runtime/lua/vim')
-rw-r--r--runtime/lua/vim/filetype/detect.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/lua/vim/filetype/detect.lua b/runtime/lua/vim/filetype/detect.lua
index 37922b4ebf..c6d77dac51 100644
--- a/runtime/lua/vim/filetype/detect.lua
+++ b/runtime/lua/vim/filetype/detect.lua
@@ -1323,6 +1323,7 @@ local patterns_hashbang = {
['fish\\>'] = { 'fish', { vim_regex = true } },
['gforth\\>'] = { 'forth', { vim_regex = true } },
['icon\\>'] = { 'icon', { vim_regex = true } },
+ guile = 'scheme',
}
---@private