neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

startup-fail.lua (106B)


      1 -- Test "nvim -l foo.lua …" with a Lua error.
      2 
      3 local function main()
      4  error('my pearls!!')
      5 end
      6 
      7 main()