docs(git_status): add missing opt expand_dir (#2824)

* docs(git_status): add missing opt `expand_dir`

* [docgen] Update doc/telescope.txt
skip-checks: true

---------

Co-authored-by: Github Actions <actions@github>
This commit is contained in:
James Trew
2023-12-25 11:45:01 -05:00
committed by GitHub
parent 9907deaed2
commit fa4d663c8c
3 changed files with 36 additions and 28 deletions

View File

@@ -1148,6 +1148,8 @@ builtin.git_status({opts}) *telescope.builtin.git_status()*
{git_icons} (table) string -> string. Matches name with icon
(see source code, make_entry.lua
git_icon_defaults)
{expand_dir} (boolean) pass flag `-uall` to show files in
untracked directories (default: true)
builtin.git_stash({opts}) *telescope.builtin.git_stash()*
@@ -1394,27 +1396,32 @@ builtin.buffers({opts}) *telescope.builtin.buffers()*
{opts} (table) options to pass to the picker
Options: ~
{cwd} (string) specify a working directory to
filter buffers list by
{show_all_buffers} (boolean) if true, show all buffers,
including unloaded buffers
(default: true)
{ignore_current_buffer} (boolean) if true, don't show the current
buffer in the list (default: false)
{only_cwd} (boolean) if true, only show buffers in the
current working directory (default:
false)
{cwd_only} (boolean) alias for only_cwd
{sort_lastused} (boolean) Sorts current and last buffer to
the top and selects the lastused
(default: false)
{sort_mru} (boolean) Sorts all buffers after most recent
used. Not just the current and last
one (default: false)
{bufnr_width} (number) Defines the width of the buffer
numbers in front of the filenames
(default: dynamic)
{file_encoding} (string) file encoding for the previewer
{cwd} (string) specify a working directory to
filter buffers list by
{show_all_buffers} (boolean) if true, show all buffers,
including unloaded buffers
(default: true)
{ignore_current_buffer} (boolean) if true, don't show the current
buffer in the list (default:
false)
{only_cwd} (boolean) if true, only show buffers in the
current working directory
(default: false)
{cwd_only} (boolean) alias for only_cwd
{sort_lastused} (boolean) Sorts current and last buffer to
the top and selects the lastused
(default: false)
{sort_mru} (boolean) Sorts all buffers after most
recent used. Not just the current
and last one (default: false)
{bufnr_width} (number) Defines the width of the buffer
numbers in front of the filenames
(default: dynamic)
{file_encoding} (string) file encoding for the previewer
{sort_buffers} (function) sort fn(bufnr_a, bufnr_b). true if
bufnr_a should go first. Runs
after sorting by most recent (if
specified)
builtin.colorscheme({opts}) *telescope.builtin.colorscheme()*
@@ -3311,9 +3318,8 @@ actions.to_fuzzy_refine({prompt_bufnr}) *telescope.actions.to_fuzzy_refine()*
{prompt_bufnr} (number) The prompt bufnr
actions.delete_mark({prompt_bufnr}) *telescope.actions.delete_mark()*
Delete the selected mark or all the marks selected using multi
selection.
actions.delete_mark({prompt_bufnr}) *telescope.actions.delete_mark()*
Delete the selected mark or all the marks selected using multi selection.
Parameters: ~