fix: copilot suggestions warning

This commit is contained in:
iofq 2025-02-04 02:29:38 -06:00
parent e7eb63b09b
commit 55bade6fb7
2 changed files with 6 additions and 1 deletions

View file

@ -60,7 +60,7 @@ return {
}, },
opts = { opts = {
provider = "copilot", provider = "copilot",
auto_suggestions_provider = "copilot", -- auto_suggestions_provider = "copilot",
behavior = { behavior = {
auto_suggestions = false, -- TODO auto_suggestions = false, -- TODO
}, },

View file

@ -61,6 +61,11 @@ return {
function() Snacks.picker.smart() end, function() Snacks.picker.smart() end,
{ noremap = true, silent = true, desc = 'Fuzzy find files' } { noremap = true, silent = true, desc = 'Fuzzy find files' }
}, },
{
'<leader>fg',
function() Snacks.picker.files() end,
{ noremap = true, silent = true, desc = 'Fuzzy find files' }
},
{ {
'<leader>fa', '<leader>fa',
function() Snacks.picker.grep() end, function() Snacks.picker.grep() end,