Silence <c-x><c-o> auto completion trigger messages

This commit is contained in:
Mathias Fussenegger 2024-05-26 19:17:43 +02:00 committed by Mathias Fußenegger
parent c65c163daa
commit 922ebc75c2

View file

@ -56,8 +56,8 @@ function M.attach(bufnr)
vim.cmd(string.format([[
augroup dap_autocomplete-%d
au!
autocmd InsertCharPre <buffer=%d> lua require('dap.ext.autocompl')._InsertCharPre()
autocmd InsertLeave <buffer=%d> lua require('dap.ext.autocompl')._InsertLeave()
autocmd InsertCharPre <silent> <buffer=%d> lua require('dap.ext.autocompl')._InsertCharPre()
autocmd InsertLeave <silent> <buffer=%d> lua require('dap.ext.autocompl')._InsertLeave()
augroup end
]],
bufnr,