fix(telescope): bind hidden/ignore to <a-i>, <a-h> instead of <c-i> since thats the same as <tab>. Fixes #117

This commit is contained in:
Folke Lemaitre
2023-01-24 08:17:57 +01:00
parent adee0521bf
commit 5aa85e47e4

View File

@ -106,10 +106,10 @@ return {
["<c-t>"] = function(...)
return require("trouble.providers.telescope").open_with_trouble(...)
end,
["<C-i>"] = function()
["<a-i>"] = function()
Util.telescope("find_files", { no_ignore = true })()
end,
["<C-h>"] = function()
["<a-h>"] = function()
Util.telescope("find_files", { hidden = true })()
end,
["<C-Down>"] = function(...)