We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1374548 commit 6a4e1ecCopy full SHA for 6a4e1ec
test/index_manual_test.vim
@@ -0,0 +1,23 @@
1
+vim9script
2
+
3
+message clear
4
5
+def g:Foo()
6
+ echom "Fatto!"
7
+enddef
8
9
+var test = [
10
+ ["file", 'C:\Users\yt75534\vimfiles\plugins\vim-markdown-extras\testfile.md'],
11
+ ["link", 'https://example.com'],
12
+ ["func", "function('g:Cazzo')"],
13
+ ["empty", ""],
14
+ ["wrong_type", 12234],
15
+ ["func_lambda", string(() => 'echo "ECCOLA!"')],
16
+]
17
18
+var test_safe = [
19
20
21
+ ["global_func", "function('g:Foo')"],
22
23
+execute $"MDEIndex {test_safe}"
0 commit comments