1
0
forked from aniani/vim

patch 9.1.0442: hare runtime files outdated

Problem:  hare runtime files outdated
Solution: runtime(hare): update hare.vim to match upstream
          (Amelia Clarke)

closes: #14836

Signed-off-by: Amelia Clarke <selene@perilune.dev>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
Amelia Clarke
2024-05-24 08:05:00 +02:00
committed by Christian Brabandt
parent 2b09de9104
commit 35dfe58a54
16 changed files with 443 additions and 124 deletions

View File

@@ -1513,6 +1513,41 @@ func Test_git_file()
filetype off
endfunc
func Test_haredoc_file()
filetype on
call assert_true(mkdir('foo/bar', 'pR'))
call writefile([], 'README', 'D')
split README
call assert_notequal('haredoc', &filetype)
bwipe!
let g:filetype_haredoc = 1
split README
call assert_notequal('haredoc', &filetype)
bwipe!
call writefile([], 'foo/quux.ha')
split README
call assert_equal('haredoc', &filetype)
bwipe!
call delete('foo/quux.ha')
call writefile([], 'foo/bar/baz.ha', 'D')
split README
call assert_notequal('haredoc', &filetype)
bwipe!
let g:haredoc_search_depth = 2
split README
call assert_equal('haredoc', &filetype)
bwipe!
unlet g:filetype_haredoc
unlet g:haredoc_search_depth
filetype off
endfunc
func Test_hook_file()
filetype on