Skip to content

Commit a44fa81

Browse files
committed
fix(completion): fix wrong icons import
1 parent ad83284 commit a44fa81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/opencode/ui/completion/commands.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
local icons = require('lua.opencode.ui.icons')
21
local M = {}
32

43
local function get_available_commands()
@@ -25,6 +24,7 @@ local command_source = {
2524
name = 'commands',
2625
priority = 1,
2726
complete = function(context)
27+
local icons = require('opencode.ui.icons')
2828
if not context.line:match('^' .. vim.pesc(context.trigger_char) .. '[^%s/]*$') then
2929
return {}
3030
end

0 commit comments

Comments
 (0)