mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-23 01:08:59 +02:00
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:
parent
adee0521bf
commit
5aa85e47e4
1 changed files with 2 additions and 2 deletions
|
@ -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(...)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue