blob: 57c7525ba62aaeac3b53291ecbfaa55a4fef1228 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
vim9script
# Unit tests for Vim Language Server Protocol (LSP) for various functionality
# Test for no duplicates in helptags
def g:Test_Helptags()
:helptags ../doc
enddef
# Only here to because the test runner needs it
def g:StartLangServer(): bool
return true
enddef
# vim: shiftwidth=2 softtabstop=2 noexpandtab
|