|
44 | 44 | M.edit_files = function(args, response_pipe, guest_cwd)
|
45 | 45 | local config = require("flatten").config
|
46 | 46 | local callbacks = config.callbacks
|
| 47 | + local focus_first = config.window.focus == "first" |
| 48 | + local open = config.window.open |
47 | 49 |
|
48 | 50 | callbacks.pre_open()
|
49 | 51 | if #args > 0 then
|
50 | 52 | local argstr = ""
|
51 |
| - for _, arg in pairs(args) do |
| 53 | + for _, arg in ipairs(args) do |
52 | 54 | local p = vim.loop.fs_realpath(arg) or guest_cwd .. '/' .. arg
|
53 | 55 | if argstr == "" or argstr == nil then
|
54 | 56 | argstr = p
|
55 | 57 | else
|
56 | 58 | argstr = argstr .. " " .. p
|
57 | 59 | end
|
58 | 60 | end
|
59 |
| - vim.cmd("0argadd " .. argstr) |
60 | 61 |
|
61 |
| - vim.cmd("tab argument 1") |
| 62 | + vim.cmd("0argadd " .. argstr) |
62 | 63 |
|
63 |
| - vim.cmd("edit") |
| 64 | + if type(open) == "function" then |
| 65 | + -- Pass list of new buffer IDs |
| 66 | + local bufs = vim.api.nvim_list_bufs() |
| 67 | + local start = #bufs - #args |
| 68 | + local newbufs = {} |
| 69 | + for i, buf in ipairs(bufs) do |
| 70 | + if i > start then |
| 71 | + table.insert(newbufs, buf) |
| 72 | + end |
| 73 | + end |
| 74 | + open(newbufs) |
| 75 | + elseif type(open) == "string" then |
| 76 | + local focus = vim.fn.argv(focus_first and 0 or (#args - 1)) |
| 77 | + if open == "current" then |
| 78 | + vim.cmd("edit " .. focus) |
| 79 | + elseif open == "split" then |
| 80 | + vim.cmd("split " .. focus) |
| 81 | + elseif open == "vsplit" then |
| 82 | + vim.cmd("vsplit " .. focus) |
| 83 | + else |
| 84 | + vim.cmd("tab " .. focus) |
| 85 | + end |
| 86 | + else |
| 87 | + vim.api.nvim_err_writeln("Flatten: 'config.open.focus' expects a function or string, got " .. type(open)) |
| 88 | + end |
64 | 89 | else
|
65 |
| - vim.cmd("tabnew") |
| 90 | + -- If there weren't any args, don't open anything |
| 91 | + -- and tell the guest not to block |
| 92 | + return false |
66 | 93 | end
|
67 | 94 | local ft = vim.bo.filetype
|
68 | 95 |
|
|
0 commit comments