From 7e62c0bf437b5b1b91297c92095154ac8d770b02 Mon Sep 17 00:00:00 2001 From: FBamx <46856163+FBamx@users.noreply.github.com> Date: Sat, 6 May 2023 22:49:42 +0800 Subject: [PATCH] Update project.lua When directly inputting "Telescope projects" in the command mode, an error will be reported, and the error message is "[telescope.run_command]: Unknown command". If the character 's' in word "projects" is removed, the command will be executed successfully and will not affect the execution of fp --- lua/lazyvim/plugins/extras/util/project.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/lazyvim/plugins/extras/util/project.lua b/lua/lazyvim/plugins/extras/util/project.lua index 63e2e9b9..17e62389 100644 --- a/lua/lazyvim/plugins/extras/util/project.lua +++ b/lua/lazyvim/plugins/extras/util/project.lua @@ -12,7 +12,7 @@ return { require("telescope").load_extension("projects") end, keys = { - { "fp", "Telescope projects", desc = "Projects" }, + { "fp", "Telescope project", desc = "Projects" }, }, }, },