diff options
| author | Dhruv Manilawala <dhruvmanila@gmail.com> | 2022-03-30 20:42:46 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-30 17:12:46 +0200 |
| commit | 4eedf1599e7adfde8e6777a8e1a0773fdbca0e92 (patch) | |
| tree | 3d47cbf565040aee5e6f293e5e8b544b74e34200 /lua | |
| parent | cf2d6d34282afd90f0f5d2aba265a23b068494c2 (diff) | |
fix: add `%s` to notify message of git checkout action (#1812)
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/telescope/actions/init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/telescope/actions/init.lua b/lua/telescope/actions/init.lua index e0b9f79..4ae54e3 100644 --- a/lua/telescope/actions/init.lua +++ b/lua/telescope/actions/init.lua @@ -478,7 +478,7 @@ actions.git_checkout = function(prompt_bufnr) local _, ret, stderr = utils.get_os_command_output({ "git", "checkout", selection.value }, cwd) if ret == 0 then utils.notify("actions.git_checkout", { - msg = string.format("Checked out: ", selection.value), + msg = string.format("Checked out: %s", selection.value), level = "INFO", }) else |
