diff options
author | Christian Clason <c.clason@uni-graz.at> | 2025-01-20 22:45:47 +0100 |
---|---|---|
committer | Christian Clason <ch.clason+github@icloud.com> | 2025-01-23 09:42:20 +0100 |
commit | 8634bd46b26f28fa26950128b0cc585560bd6a9a (patch) | |
tree | a02b5a77a93183c56b7f51ea8edf95aa98eb952b /test | |
parent | 28998e1f8a9cdca27ada7030757b7a47e99ce5b6 (diff) | |
download | rneovim-8634bd46b26f28fa26950128b0cc585560bd6a9a.tar.gz rneovim-8634bd46b26f28fa26950128b0cc585560bd6a9a.tar.bz2 rneovim-8634bd46b26f28fa26950128b0cc585560bd6a9a.zip |
vim-patch:9.1.1042: filetype: just files are not recognized
Problem: filetype: just files are not recognized
Solution: adjust filetype detection pattern, detect just shebang line,
include just ftplugin, indent and syntax plugin
(Peter Benjamin)
closes: vim/vim#16466
https://github.com/vim/vim/commit/72755b3c8e91ec90447969b736f080e0de36003d
Co-authored-by: Peter Benjamin <petermbenjamin@gmail.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/old/testdir/test_filetype.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/old/testdir/test_filetype.vim b/test/old/testdir/test_filetype.vim index e39b93eea4..9398cea786 100644 --- a/test/old/testdir/test_filetype.vim +++ b/test/old/testdir/test_filetype.vim @@ -997,6 +997,7 @@ func s:GetScriptChecks() abort \ 'expect': [['#!/path/expect']], \ 'execline': [['#!/sbin/execlineb -S0'], ['#!/usr/bin/execlineb']], \ 'gnuplot': [['#!/path/gnuplot']], + \ 'just': [['#!/path/just']], \ 'make': [['#!/path/make']], \ 'nix': [['#!/path/nix-shell']], \ 'pike': [['#!/path/pike'], |