summaryrefslogtreecommitdiff
path: root/lua/telescope/builtin/init.lua
diff options
context:
space:
mode:
authorFarbod Salamat-Zadeh <12140044+farbodsz@users.noreply.github.com>2021-12-06 20:20:37 +0000
committerGitHub <noreply@github.com>2021-12-06 21:20:37 +0100
commit6b1579741a0e8f1e0e63d0c6c364b968c157338e (patch)
tree297e1c6df710d2fb16e716b76a9c3d482728ed88 /lua/telescope/builtin/init.lua
parenta20f01353bde239e931c3c461fd3ef2d160a4f9b (diff)
fix: git stash entry formatting (#1452)
Diffstat (limited to 'lua/telescope/builtin/init.lua')
-rw-r--r--lua/telescope/builtin/init.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/telescope/builtin/init.lua b/lua/telescope/builtin/init.lua
index 0a69aae..9330aec 100644
--- a/lua/telescope/builtin/init.lua
+++ b/lua/telescope/builtin/init.lua
@@ -204,6 +204,7 @@ builtin.git_status = require_on_exported_call("telescope.builtin.git").status
---@param opts table: options to pass to the picker
---@field cwd string: specify the path of the repo
---@field use_git_root boolean: if we should use git root as cwd or the cwd (important for submodule) (default: true)
+---@field show_branch boolean: if we should display the branch name for git stash entries (default: true)
builtin.git_stash = require_on_exported_call("telescope.builtin.git").stash
--