From 6bf261884e3b0039d1d4364a030c16bdcbaeabe3 Mon Sep 17 00:00:00 2001 From: dunix241 Date: Mon, 28 Oct 2024 20:02:47 +0700 Subject: [PATCH] ci: reformat --- lua/lazyvim/plugins/extras/editor/telescope.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lua/lazyvim/plugins/extras/editor/telescope.lua b/lua/lazyvim/plugins/extras/editor/telescope.lua index af7c1090..87856b57 100644 --- a/lua/lazyvim/plugins/extras/editor/telescope.lua +++ b/lua/lazyvim/plugins/extras/editor/telescope.lua @@ -272,7 +272,10 @@ return { }) end opts.defaults = vim.tbl_deep_extend("force", opts.defaults or {}, { - mappings = { n = k.flash.normal == "" and {} or { [k.flash.normal] = flash }, i = k.flash.insert == "" and {} or { [k.flash.insert] = flash } }, + mappings = { + n = k.flash.normal == "" and {} or { [k.flash.normal] = flash }, + i = k.flash.insert == "" and {} or { [k.flash.insert] = flash }, + }, }) end, },