xref
: /
vim-8.2.3635
/
src
/
testdir
/
testluaplugin
/
lua
/
testluaplugin
/
hello.lua
(revision 788fbb47)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
local
function
hello
()
2
return
"hello from lua"
3
end
4
5
return
{
6
hello
=
hello
7
}
8