aboutsummaryrefslogtreecommitdiff
path: root/test/functional/fixtures/startup.lua
blob: d0e60309bd02eb1275b6fc65df744dfcc78b7307 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
-- Test "nvim -l foo.lua …"

local function printbufs()
  local bufs = ''
  for _, v in ipairs(vim.api.nvim_list_bufs()) do
    local b = vim.fn.bufname(v)
    if b:len() > 0 then
      bufs = ('%s %s'):format(bufs, b)
    end
  end
  print(('bufs:%s'):format(bufs))
end

local function parseargs(args)
  local exitcode = nil
  for i = 1, #args do
    if args[i] == '--exitcode' then
      exitcode = tonumber(args[i + 1])
    end
  end
  return exitcode
end

local function main()
  printbufs()
  print('nvim args:', #vim.v.argv)
  print('lua args:', vim.inspect(_G.arg))

  local exitcode = parseargs(_G.arg)
  if type(exitcode) == 'number' then
    os.exit(exitcode)
  end
end

main()