@@ -41,14 +41,25 @@ local function notify_when_done(pipe, bufnr, callback, ft)
41
41
})
42
42
end
43
43
44
- M .edit_files = function (args , response_pipe , guest_cwd )
44
+ M .edit_files = function (args , response_pipe , guest_cwd , stdin )
45
45
local config = require (" flatten" ).config
46
46
local callbacks = config .callbacks
47
47
local focus_first = config .window .focus == " first"
48
48
local open = config .window .open
49
49
50
+ local nargs = # args
51
+ local stdin_lines = # stdin
52
+
53
+ if nargs == 0 and stdin_lines == 0 then
54
+ -- If there are no new bufs, don't open anything
55
+ -- and tell the guest not to block
56
+ return false
57
+ end
58
+
50
59
callbacks .pre_open ()
51
- if # args > 0 then
60
+
61
+ -- Open files
62
+ if nargs > 0 then
52
63
local argstr = " "
53
64
for _ , arg in ipairs (args ) do
54
65
local p = vim .loop .fs_realpath (arg ) or guest_cwd .. ' /' .. arg
@@ -60,37 +71,67 @@ M.edit_files = function(args, response_pipe, guest_cwd)
60
71
end
61
72
62
73
vim .cmd (" 0argadd " .. argstr )
74
+ end
63
75
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
76
+ -- Create buffer for stdin pipe input
77
+ local stdin_buf = nil
78
+ if stdin_lines > 0 then
79
+ -- Create buffer for stdin
80
+ stdin_buf = vim .api .nvim_create_buf (true , false )
81
+ -- Add text to buffer
82
+ vim .api .nvim_buf_set_lines (stdin_buf , 0 , 0 , true , stdin )
83
+ -- Set buffer name based on the first line of stdin
84
+ local name = stdin [1 ]:sub (1 , 12 ):gsub (" [^%w%.]" , " " )
85
+ -- Ensure the name isn't empty or a duplicate
86
+ if vim .fn .bufname (name ) ~= " " or name == " " then
87
+ local i = 1
88
+ local newname = name .. i
89
+ while vim .fn .bufname (newname ) ~= " " do
90
+ i = i + 1
91
+ newname = name .. i
73
92
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 (" tabedit " .. focus )
93
+ name = newname
94
+ end
95
+ vim .api .nvim_buf_set_name (stdin_buf , name )
96
+ end
97
+
98
+ -- Open window
99
+ if type (open ) == " function" then
100
+ -- Pass list of new buffer IDs
101
+ local bufs = vim .api .nvim_list_bufs ()
102
+ local start = # bufs - # args
103
+ -- Add buffer for stdin
104
+ local newbufs = {}
105
+ -- If there's an stdin buf, push it to the table
106
+ if stdin_buf then
107
+ start = start - 1
108
+ table.insert (newbufs , stdin_buf )
109
+ end
110
+ for i , buf in ipairs (bufs ) do
111
+ if i > start then
112
+ table.insert (newbufs , buf )
85
113
end
114
+ end
115
+ open (newbufs )
116
+ elseif type (open ) == " string" then
117
+ local focus = vim .fn .argv (focus_first and 0 or (# args - 1 ))
118
+ -- If there's an stdin buf, focus that
119
+ if stdin_buf then
120
+ focus = vim .api .nvim_buf_get_name (stdin_buf )
121
+ end
122
+ if open == " current" then
123
+ vim .cmd (" edit " .. focus )
124
+ elseif open == " split" then
125
+ vim .cmd (" split " .. focus )
126
+ elseif open == " vsplit" then
127
+ vim .cmd (" vsplit " .. focus )
86
128
else
87
- vim .api . nvim_err_writeln ( " Flatten: 'config.open.focus' expects a function or string, got " .. type ( open ) )
129
+ vim .cmd ( " tabedit " .. focus )
88
130
end
89
131
else
90
- -- If there weren't any args, don't open anything
91
- -- and tell the guest not to block
92
- return false
132
+ vim .api .nvim_err_writeln (" Flatten: 'config.open.focus' expects a function or string, got " .. type (open ))
93
133
end
134
+
94
135
local ft = vim .bo .filetype
95
136
96
137
local winnr = vim .api .nvim_get_current_win ()
@@ -100,6 +141,9 @@ M.edit_files = function(args, response_pipe, guest_cwd)
100
141
local block = config .block_for [ft ] == true
101
142
if block then
102
143
notify_when_done (response_pipe , bufnr , callbacks .block_end , ft )
144
+ -- else
145
+ -- local response_sock = vim.fn.sockconnect("pipe", response_pipe, { rpc = true })
146
+ -- vim.fn.rpcnotify(response_sock, "nvim_exec_lua", "vim.cmd('qa!')")
103
147
end
104
148
return block
105
149
end
0 commit comments