diff options
| author | William Boman <william@redwill.se> | 2021-04-21 02:48:29 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-20 17:48:29 -0700 |
| commit | 3adeab2bed42597c8495fbe3a2376c746232f2e3 (patch) | |
| tree | a4cd1f60c32a11d869af92d5c535fba05de73a40 /lua/telescope/builtin/git.lua | |
| parent | 13dae8c4d924472933443f14109a0739dbacbeda (diff) | |
fix: support multiple clients in lsp code actions (#722)
* fix: support multiple clients in lsp code actions
* no goto
* reduce diff a bit
* use displayer, also include lsp client name for each entry
* review comments
Diffstat (limited to 'lua/telescope/builtin/git.lua')
| -rw-r--r-- | lua/telescope/builtin/git.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/telescope/builtin/git.lua b/lua/telescope/builtin/git.lua index f7c0096..198abae 100644 --- a/lua/telescope/builtin/git.lua +++ b/lua/telescope/builtin/git.lua @@ -15,7 +15,7 @@ git.files = function(opts) local show_untracked = utils.get_default(opts.show_untracked, true) local recurse_submodules = utils.get_default(opts.recurse_submodules, false) if show_untracked and recurse_submodules then - error("Git does not suppurt both --others and --recurse-submodules") + error("Git does not support both --others and --recurse-submodules") end -- By creating the entry maker after the cwd options, |
