Skip to content

Commit 6e7a179

Browse files
committed
feat(config): Add settings for opening windows
1 parent 438c8b8 commit 6e7a179

File tree

4 files changed

+54
-8
lines changed

4 files changed

+54
-8
lines changed

README.md

+15
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,21 @@ Flatten comes with the following defaults:
5050
-- <String, Bool> dictionary of filetypes that should be blocking
5151
block_for = {
5252
gitcommit = true
53+
},
54+
-- Window options
55+
window = {
56+
-- Options:
57+
-- tab -> opens in new tab (default)
58+
-- split -> opens in split
59+
-- vsplit -> opens in vsplit
60+
-- current -> opens in current window
61+
-- func(new_bufs) -> flatten will only open the files, allowing you to handle window opening yourself. Argument is an array of new buffer numbers.
62+
open = "tab",
63+
-- Affects which file gets focused when opening multiple at once
64+
-- Options:
65+
-- "first" -> opens first file of new files (default)
66+
-- "last" -> opens last file of new files
67+
focus = "first"
5368
}
5469
}
5570
```

lua/flatten/core.lua

+32-5
Original file line numberDiff line numberDiff line change
@@ -44,25 +44,52 @@ end
4444
M.edit_files = function(args, response_pipe, guest_cwd)
4545
local config = require("flatten").config
4646
local callbacks = config.callbacks
47+
local focus_first = config.window.focus == "first"
48+
local open = config.window.open
4749

4850
callbacks.pre_open()
4951
if #args > 0 then
5052
local argstr = ""
51-
for _, arg in pairs(args) do
53+
for _, arg in ipairs(args) do
5254
local p = vim.loop.fs_realpath(arg) or guest_cwd .. '/' .. arg
5355
if argstr == "" or argstr == nil then
5456
argstr = p
5557
else
5658
argstr = argstr .. " " .. p
5759
end
5860
end
59-
vim.cmd("0argadd " .. argstr)
6061

61-
vim.cmd("tab argument 1")
62+
vim.cmd("0argadd " .. argstr)
6263

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
6489
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
6693
end
6794
local ft = vim.bo.filetype
6895

lua/flatten/guest.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
local M = {}
22

33
M.init = function(host_pipe)
4-
local args = vim.call("argv")
4+
local args = vim.fn.argv()
55

66
local host = vim.fn.sockconnect("pipe", host_pipe, { rpc = true })
77

88
local call =
9-
"return require('flatten.core').edit_files("
9+
"return require('flatten.core').edit_files("
1010
.. vim.inspect(args) .. ','
1111
.. "'" .. vim.v.servername .. "',"
1212
.. "'" .. vim.fn.getcwd() .. "'" ..

lua/flatten/init.lua

+5-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@ M.config = {
1010
end
1111
},
1212
block_for = {
13-
["gitcommit"] = true,
13+
gitcommit = true,
14+
},
15+
window = {
16+
open = "tab",
17+
focus = "first"
1418
}
1519
}
1620

0 commit comments

Comments
 (0)