ci: format
This commit is contained in:
parent
0e88e0f182
commit
72ea6249f4
3 changed files with 24 additions and 12 deletions
|
|
@ -960,10 +960,14 @@ function M.toggle_panel(panel_opts)
|
|||
|
||||
local o = config.hooks and config.hooks.on
|
||||
if o and o.run then
|
||||
vim.schedule(function() o.run(state) end)
|
||||
vim.schedule(function()
|
||||
o.run(state)
|
||||
end)
|
||||
end
|
||||
if panel_opts and panel_opts.debug and o and o.debug then
|
||||
vim.schedule(function() o.debug(state) end)
|
||||
vim.schedule(function()
|
||||
o.debug(state)
|
||||
end)
|
||||
end
|
||||
|
||||
vim.api.nvim_set_current_win(test_windows.tab_win)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue