aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2023-02-23 17:52:33 +0100
committerGitHub <noreply@github.com>2023-02-23 17:52:33 +0100
commit8c339aa04b2a1ca99a297b2eada8ebc6218f5f1c (patch)
tree8e469869d584bb559e14469605fcc77d6c5eb132 /src
parent75e53341f37eeeda7d9be7f934249f7e5e4397e9 (diff)
downloadrneovim-8c339aa04b2a1ca99a297b2eada8ebc6218f5f1c.tar.gz
rneovim-8c339aa04b2a1ca99a297b2eada8ebc6218f5f1c.tar.bz2
rneovim-8c339aa04b2a1ca99a297b2eada8ebc6218f5f1c.zip
vim-patch:9.0.1346: Starlark files are not recognized (#22380)
Problem: Starlark files are not recognized. Solution: Add patterns for Starlark files. (Amaan Qureshi, closes vim/vim#12049) https://github.com/vim/vim/commit/ca06b30073de22dc120b532e90fbee2a10ef9772 Co-authored-by: Amaan Qureshi <amaanq12@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/nvim/testdir/test_filetype.vim1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_filetype.vim b/src/nvim/testdir/test_filetype.vim
index af33b5b051..a69ac5462e 100644
--- a/src/nvim/testdir/test_filetype.vim
+++ b/src/nvim/testdir/test_filetype.vim
@@ -560,6 +560,7 @@ let s:filename_checks = {
\ 'sshconfig': ['ssh_config', '/.ssh/config', '/etc/ssh/ssh_config.d/file.conf', 'any/etc/ssh/ssh_config.d/file.conf', 'any/.ssh/config', 'any/.ssh/file.conf'],
\ 'sshdconfig': ['sshd_config', '/etc/ssh/sshd_config.d/file.conf', 'any/etc/ssh/sshd_config.d/file.conf'],
\ 'st': ['file.st'],
+ \ 'starlark': ['file.ipd', 'file.star', 'file.starlark'],
\ 'stata': ['file.ado', 'file.do', 'file.imata', 'file.mata'],
\ 'stp': ['file.stp'],
\ 'sudoers': ['any/etc/sudoers', 'sudoers.tmp', '/etc/sudoers', 'any/etc/sudoers.d/file'],