aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2023-06-24 20:04:30 +0200
committerGitHub <noreply@github.com>2023-06-24 20:04:30 +0200
commitcc624fac683ce6dbd01f10781817cd654cceed38 (patch)
treeee61595309db58c7d8bd84aaa25cd71f65b6639e /test
parent8182384205d3c222e999ea9a78276cbf685f50fd (diff)
downloadrneovim-cc624fac683ce6dbd01f10781817cd654cceed38.tar.gz
rneovim-cc624fac683ce6dbd01f10781817cd654cceed38.tar.bz2
rneovim-cc624fac683ce6dbd01f10781817cd654cceed38.zip
vim-patch:9.0.1661: BUCK files are not recognized (#24142)
Problem: BUCK files are not recognized. Solution: Recognize BUCK files as "bzl". (Son Luong Ngoc, closes vim/vim#12564) https://github.com/vim/vim/commit/b46e0f3263acd99c61df06ee3c4d1f6e0b471bc3 Co-authored-by: Son Luong Ngoc <sluongng@gmail.com>
Diffstat (limited to 'test')
-rw-r--r--test/old/testdir/test_filetype.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/old/testdir/test_filetype.vim b/test/old/testdir/test_filetype.vim
index 5acf16514f..8004c35d97 100644
--- a/test/old/testdir/test_filetype.vim
+++ b/test/old/testdir/test_filetype.vim
@@ -705,7 +705,7 @@ let s:filename_checks = {
let s:filename_case_checks = {
\ 'modula2': ['file.DEF'],
- \ 'bzl': ['file.BUILD', 'BUILD'],
+ \ 'bzl': ['file.BUILD', 'BUILD', 'BUCK'],
\ }
func CheckItems(checks)