Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lua/codecompanion/interactions/chat/keymaps/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,7 @@ M.copilot_stats = {
M.super_diff = {
desc = "Show super diff buffer",
callback = function(chat)
require("codecompanion.interactions.chat.helpers.super_diff").show_super_diff(chat)
require("codecompanion.interactions.chat.super_diff").show_super_diff(chat)
end,
}

Expand Down
2 changes: 1 addition & 1 deletion tests/interactions/chat/test_super_diff.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ local T = new_set({
child.lua([[
h = require('tests.helpers')
chat, agent = h.setup_chat_buffer()
super_diff = require("codecompanion.interactions.chat.helpers.super_diff")
super_diff = require("codecompanion.interactions.chat.super_diff")
edit_tracker = require("codecompanion.interactions.chat.edit_tracker")

-- Mock config to include floating_window
Expand Down