Skip to content

Commit e23f440

Browse files
authored
feat(renderer): display task tool summary (#307)
1 parent cad16ea commit e23f440

10 files changed

Lines changed: 7204 additions & 70 deletions

File tree

ftplugin/opencode.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ vim.b.did_ftplugin = true
77

88
local bufnr = vim.api.nvim_get_current_buf()
99

10-
vim.bo.completeopt = 'menu,menuone,noselect,fuzzy'
1110
local opencode_ls = require('opencode.lsp.opencode_ls')
1211
local client_id = opencode_ls.start(bufnr)
1312
local completion = require('opencode.ui.completion')
1413
if client_id and not completion.has_completion_engine() then
1514
pcall(function()
15+
vim.bo.completeopt = 'menu,menuone,noselect,fuzzy'
1616
vim.lsp.completion.enable(true, client_id, bufnr, { autotrigger = true })
1717
end)
1818
end

0 commit comments

Comments
 (0)