vim-patch:9.1.0492: filetype: Vim-script files not detected by shebang line

Problem:  Vim-script files may not be recognised
Solution: Add shebang line detection (Doug Kearns)

closes: vim/vim#15012

0d4d23dac0

Co-authored-by: Doug Kearns <dougkearns@gmail.com>
This commit is contained in:
Christian Clason
2024-06-16 11:27:20 +02:00
parent 57c377dfb2
commit 191a70f9dd
2 changed files with 2 additions and 0 deletions

View File

@@ -1783,6 +1783,7 @@ local patterns_hashbang = {
['^janet\\>'] = { 'janet', { vim_regex = true } },
['^dart\\>'] = { 'dart', { vim_regex = true } },
['^execlineb\\>'] = { 'execline', { vim_regex = true } },
['^vim\\>'] = { 'vim', { vim_regex = true } },
}
---@private

View File

@@ -992,6 +992,7 @@ func s:GetScriptChecks() abort
\ ['#!/path/regina']],
\ 'janet': [['#!/path/janet']],
\ 'dart': [['#!/path/dart']],
\ 'vim': [['#!/path/vim']],
\ }
endfunc