Skip to content

Commit 9955c98

Browse files
committed
fix(log): correct buffer variable in append function
1 parent fb976f0 commit 9955c98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/flutter-tools/log.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ end
7676
---@param lines string[]
7777
local function append(buf, lines)
7878
vim.bo[buf].modifiable = true
79-
api.nvim_buf_set_lines(M.buf, -1, -1, true, lines)
79+
api.nvim_buf_set_lines(buf, -1, -1, true, lines)
8080
vim.bo[buf].modifiable = false
8181
end
8282

0 commit comments

Comments
 (0)