mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 11:15:14 -07:00
8 lines
106 B
Lua
8 lines
106 B
Lua
-- Test "nvim -l foo.lua …" with a Lua error.
|
|
|
|
local function main()
|
|
error('my pearls!!')
|
|
end
|
|
|
|
main()
|