master - refix disable tab when using copilot

This commit is contained in:
huyjaky
2025-07-27 23:58:09 +07:00
parent 827a408378
commit f0c5a8f756
9 changed files with 147 additions and 140 deletions

View File

@@ -50,8 +50,8 @@ return {
},
},
config = function(_, opts)
local dap = require "dap"
local dapui = require "dapui"
local dap = require("dap")
local dapui = require("dapui")
-- Initialize dap-ui
dapui.setup(opts)
@@ -65,7 +65,9 @@ return {
end
-- Optionally, open dap-ui when session starts
dap.listeners.after.event_initialized["dapui"] = function() dapui.open() end
dap.listeners.after.event_initialized["dapui"] = function()
dapui.open()
end
end,
},
{