Fix telescope closing

This commit is contained in:
Christian Nieves
2024-07-24 16:55:03 +00:00
parent 9b0360a291
commit c698b10503
5 changed files with 22 additions and 10 deletions

View File

@ -310,14 +310,16 @@ return {
{ "<Leader>uc", ":CritiqueToggleUnresolvedComments<CR>" },
{ "<Leader>ac", ":CritiqueToggleAllComments<CR>" },
{ "<Leader>fc", ":CritiqueFetchComments<CR>" },
{ "<Leader>tc", ":CritiqueCommentsTelescope<CR>" },
-- { "<Leader>tc", ":CritiqueCommentsTelescope<CR>" },
-- { "<Leader>tc", ":CritiqueCommentsTelescope<CR>" },
},
config = function()
-- Here are all the options and their default values:
require("critique.comments").setup({
debug = 0, -- default = 0
debug = 1, -- default = 0
-- Fetch the comments after calling `setup`.
auto_fetch = true, -- default = true
auto_render = true, -- default = true
-- Allow checking for comments on BufEnter events. This is throttled to once every 10 seconds.
frequent_fetch = true, -- default = false
verbose_notifications = true,