From 2c205581b0154daf86267c813bfaf72df048dc48 Mon Sep 17 00:00:00 2001 From: madflow Date: Sun, 21 Jul 2024 17:06:52 +0200 Subject: [PATCH] fix filesFilter expression --- lua/lazyvim/plugins/editor.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/lazyvim/plugins/editor.lua b/lua/lazyvim/plugins/editor.lua index 1f96f8a2..8aaccb27 100644 --- a/lua/lazyvim/plugins/editor.lua +++ b/lua/lazyvim/plugins/editor.lua @@ -141,7 +141,7 @@ return { end local grug = require("grug-far"); (is_visual and grug.with_visual_selection or grug.grug_far)({ - prefills = { filesFilter = "*." .. vim.fn.expand("%:e") }, + prefills = { filesFilter = "*.*" .. vim.fn.expand("%:e") }, }) end, mode = { "n", "v" },