diff options
| author | Kyoichiro Yamada <me@kyoh86.dev> | 2021-03-30 03:04:25 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-29 21:04:25 +0300 |
| commit | 2e03f67de9eab023098bd05916bf26556520a467 (patch) | |
| tree | 155d6d58dd33ba73d565e0a4f4406d7215098f81 /lua/telescope/builtin/files.lua | |
| parent | a7fa60411efbfddc0674d65346a5311e33f6deb1 (diff) | |
picker(git_branch): show committer, upstream and date (#695)
* wip: rich finder for branches
for: https://github.com/nvim-telescope/telescope.nvim/issues/569
* fix some diagnostics
Diffstat (limited to 'lua/telescope/builtin/files.lua')
| -rw-r--r-- | lua/telescope/builtin/files.lua | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lua/telescope/builtin/files.lua b/lua/telescope/builtin/files.lua index e037fb2..2d5e109 100644 --- a/lua/telescope/builtin/files.lua +++ b/lua/telescope/builtin/files.lua @@ -401,7 +401,11 @@ files.tags = function(opts) end files.current_buffer_tags = function(opts) - return files.tags(vim.tbl_extend("force", {prompt_title = 'Current Buffer Tags', only_current_file = true, hide_filename = true}, opts)) + return files.tags(vim.tbl_extend("force", { + prompt_title = 'Current Buffer Tags', + only_current_file = true, + hide_filename = true, + }, opts)) end local function apply_checks(mod) |
