From ea6f2a14900562d831eead325453821dbb15ff92 Mon Sep 17 00:00:00 2001 From: David Stark Date: Sat, 8 Jan 2022 01:54:55 +0000 Subject: [PATCH] hotfix to :Telescope command flag order --- lua/core/mappings.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/core/mappings.lua b/lua/core/mappings.lua index 55a75b8..1a72b04 100644 --- a/lua/core/mappings.lua +++ b/lua/core/mappings.lua @@ -169,7 +169,7 @@ M.telescope = function() map("n", m.buffers, ":Telescope buffers ") map("n", m.find_files, ":Telescope find_files ") - map("n", m.find_hiddenfiles, ":Telescope follow=true find_files no_ignore=true hidden=true ") + map("n", m.find_hiddenfiles, ":Telescope find_files follow=true no_ignore=true hidden=true ") map("n", m.git_commits, ":Telescope git_commits ") map("n", m.git_status, ":Telescope git_status ") map("n", m.help_tags, ":Telescope help_tags ")