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 <leader>fp
This commit is contained in:
FBamx 2023-05-06 22:49:42 +08:00 committed by GitHub
parent 25d37a2cdd
commit 7e62c0bf43
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,7 +12,7 @@ return {
require("telescope").load_extension("projects")
end,
keys = {
{ "<leader>fp", "<Cmd>Telescope projects<CR>", desc = "Projects" },
{ "<leader>fp", "<Cmd>Telescope project<CR>", desc = "Projects" },
},
},
},