aboutsummaryrefslogtreecommitdiff
path: root/test/functional/fixtures/pack/foo/opt/funky/filen.lua
blob: a33b83c2a7d4bce680357ed0c285c2c767da1538 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
table.insert(_G.test_loadorder, "funky!")

if not _G.nesty then
  _G.nesty = true
  local save_order = _G.test_loadorder
  _G.test_loadorder = {}
  _G.vim.o.pp = "" -- funky!
  vim.cmd [[runtime! filen.lua ]]
  _G.nested_order = _G.test_loadorder
  _G.test_loadorder = save_order
  _G.nesty = nil
end