Forgot to commit the last few days
This commit is contained in:
@@ -4,8 +4,9 @@ vim.api.nvim_create_autocmd("BufWritePost", {
|
||||
group = vim.api.nvim_create_augroup("AutoRunCode", { clear = true }),
|
||||
pattern = "*.lua",
|
||||
callback = function()
|
||||
local bufnr = 21
|
||||
vim.fn.jobstart({ "lua", "Day7/Day7.lua" }, {
|
||||
local day = 12
|
||||
local bufnr = 43
|
||||
vim.fn.jobstart({ "lua", "Day" .. day .. "/Day" .. day .. ".lua" }, {
|
||||
stdout_buffered = true,
|
||||
on_stdout = function(_, data)
|
||||
if data then
|
||||
|
||||
Reference in New Issue
Block a user