lazy clangd
This commit is contained in:
parent
1dd8f6f044
commit
2a5c271fd5
|
@ -144,9 +144,9 @@ return {
|
||||||
callback = function(args)
|
callback = function(args)
|
||||||
local ft = vim.bo[args.buf].filetype
|
local ft = vim.bo[args.buf].filetype
|
||||||
if vim.tbl_contains(M.clang_filetypes, ft) then
|
if vim.tbl_contains(M.clang_filetypes, ft) then
|
||||||
|
print('[clangd] BufReadPost fired for ft=' .. ft)
|
||||||
local dir = find_compile_commands()
|
local dir = find_compile_commands()
|
||||||
M.start_clangd(dir)
|
M.start_clangd(dir)
|
||||||
|
|
||||||
vim.keymap.set('n', '<leader>lc', M.pick_commands_dir, { desc = '[L]ocate [c]ompile_commands.json for clangd' })
|
vim.keymap.set('n', '<leader>lc', M.pick_commands_dir, { desc = '[L]ocate [c]ompile_commands.json for clangd' })
|
||||||
vim.api.nvim_clear_autocmds { group = 'clangd-once' }
|
vim.api.nvim_clear_autocmds { group = 'clangd-once' }
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue