summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSimon Hauser <Simon-Hauser@outlook.de>2021-10-24 08:30:31 +0200
committerGitHub <noreply@github.com>2021-10-24 08:30:31 +0200
commitf31ef362931907bbdd3b46cb880b34493c2d1882 (patch)
tree375fbc3e2f32f05fc6ce1db7d32d4b94ea9b6d4c /doc
parent09b0d87b9f99d37c3e4b64be20389f6797898cf5 (diff)
fix: opts.git_command for files, commits, bcommits (#1374)
Diffstat (limited to 'doc')
-rw-r--r--doc/telescope.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/telescope.txt b/doc/telescope.txt
index 1bce979..3e1c0c4 100644
--- a/doc/telescope.txt
+++ b/doc/telescope.txt
@@ -848,6 +848,8 @@ builtin.git_files({opts}) *builtin.git_files()*
{recurse_submodules} (boolean) if true, adds the
`--recurse-submodules` flag to command
(default: false)
+ {git_command} (table) command that will be exectued.
+ {"git","ls-files","--exclude-standard","--cached"}
builtin.git_commits({opts}) *builtin.git_commits()*
@@ -866,6 +868,8 @@ builtin.git_commits({opts}) *builtin.git_commits()*
{cwd} (string) specify the path of the repo
{use_git_root} (boolean) if we should use git root as cwd or the cwd
(important for submodule) (default: true)
+ {git_command} (table) command that will be exectued.
+ {"git","log","--pretty=oneline","--abbrev-commit","--","."}
builtin.git_bcommits({opts}) *builtin.git_bcommits()*
@@ -886,6 +890,8 @@ builtin.git_bcommits({opts}) *builtin.git_bcommits()*
(important for submodule) (default: true)
{current_file} (string) specify the current file that should be used
for bcommits (default: current buffer)
+ {git_command} (table) command that will be exectued.
+ {"git","log","--pretty=oneline","--abbrev-commit"}
builtin.git_branches({opts}) *builtin.git_branches()*