Skip to content

Commit

Permalink
Silence <c-x><c-o> auto completion trigger messages
Browse files Browse the repository at this point in the history
  • Loading branch information
mfussenegger committed May 26, 2024
1 parent c65c163 commit 922ebc7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/dap/ext/autocompl.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 922ebc7

Please sign in to comment.