archie-judd

Results 1 comments of archie-judd

This autocommand worked for me as a work-around: ```lua vim.api.nvim_create_autocmd("ExitPre", { pattern = "*", callback = function(event) for _, buf in ipairs(vim.api.nvim_list_bufs()) do if vim.api.nvim_buf_get_option(buf, "buftype") == "terminal" then vim.api.nvim_buf_delete(buf,...