aboutsummaryrefslogtreecommitdiff
path: root/test/functional/fixtures/startup-fail.lua
blob: adcfe2a20180b48d625e263c4f6ae8fc1666a0d4 (plain) (blame)
1
2
3
4
5
6
7
-- Test "nvim -l foo.lua …" with a Lua error.

local function main()
  error('my pearls!!')
end

main()