mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-21 16:39:06 +02:00
fix(fzf): esc and nowait
This commit is contained in:
parent
c424f5d5d8
commit
7c7703d792
1 changed files with 2 additions and 2 deletions
|
@ -76,7 +76,7 @@ return {
|
|||
end
|
||||
fix(defaults)
|
||||
|
||||
return vim.tbl_deep_extend("force", opts, defaults, {
|
||||
return vim.tbl_deep_extend("force", defaults, {
|
||||
fzf_colors = true,
|
||||
fzf_opts = {
|
||||
["--no-scrollbar"] = true,
|
||||
|
@ -155,7 +155,7 @@ return {
|
|||
require("fzf-lua").register_ui_select(opts.ui_select or nil)
|
||||
end,
|
||||
keys = {
|
||||
{ "<esc>", "<esc>", ft = "fzf", mode = "t", nowait = true },
|
||||
{ "<esc>", "<c-c>", ft = "fzf", mode = "t", nowait = true },
|
||||
{ "<c-j>", "<Down>", ft = "fzf", mode = "t", nowait = true },
|
||||
{ "<c-k>", "<Up>", ft = "fzf", mode = "t", nowait = true },
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue