summaryrefslogtreecommitdiff
path: root/lua/telescope/builtin/init.lua
AgeCommit message (Collapse)Author
2023-02-19feat: support selection for grep_string (#2333)cristiansofronie
2023-02-19fix: apply jump_type only if the definition file is different from the ↵Luyu Huang
current file (#2324)
2023-02-19docs: add missing documentation for builtin lsp symbols (#2365)Uraza
2023-01-30feat: Allow filtering for oldfiles and buffers (#2353)Svetlozar Iliev
2023-01-22docs: proof-read edits (#2311)James Trew
2023-01-11feat(pickers): add opt.show_remote_tracking_branches to git_branches (#2314)Matt Taylor
2022-11-28feat: add configuration to fix encoding of output of find_command in ↵zbq
find_files (#2232)
2022-11-27feat(builtin.keymaps): display noremap/buffer indicators and add lhs filter ↵Xavier Young
(#2246)
2022-11-23feat(picker): command history filter (#2132)kkharji
* feat(picker): command history filter I've recently start using command history. For sometime was a bit annoyed of unrelevant commands like edit/write and others (most likely only used once) I've considered using lua patterns, however, logical `or` isn't a thing. Additionally, passing a list of lua patterns and checking each pattern for each command history entry felt tedious. This PR introduce a new optional function to filter command history items. For example, in my configurations ~~~lua local command_history_ignore = vim.regex "edit\\|Move\\|write\\|Write\\|e\\s\\|lua\\sI(" overrides.command_history = minimal { prompt_prefix = "CMDHistory> ", filter_fn = function(item) if #item < 3 then return false else return not command_history_ignore:match_str(item) end end, } ~~~ * [docgen] Update doc/telescope.txt skip-checks: true Co-authored-by: Github Actions <actions@github>
2022-11-06feat: add jump_type option for lsp_references (#2218)Gutyina Gergő
2022-10-26fix: always load the up to date picker config on picker openSimon Hauser
2022-10-24feat: allow table as additional args in live grep and grep string (#2139)Gutyina Gergő
2022-09-04docs: update for git_files and live_grep (#2133)Sam Rosenthal
2022-08-27fix(preview): update buffer previewer to upstream changes (#2150)Christian Clason
https://github.com/neovim/neovim/pull/19931 removed `_get_hl_from_capture(id)` since captures are now implicitly mapped to highlight groups with the same name.
2022-07-22fix: move the moon behind show_moon option and update documentation (#2072) ↵steven
(#2079)
2022-07-06docs: add missing opts docs for lsp builtinsSimon Hauser
2022-07-06feat: grep_open_files for builtin.grep_string (#2039)Simon Hauser
2022-07-01break: prefix internal files and add deprecation messages (#2032)Simon Hauser
2022-07-01feat: search_file option for builtin fd command (#2029)Turiiya
2022-06-30feat(rg): pass multiple globs to rg by default (#2003)Anton
2022-06-30feat(builtin.lsp): implement builtin handlers for ↵Manuel
lsp.(incoming|outgoing)_calls (#1484) Fixes #863
2022-06-30docs: clarify docs around `search_dirs` and `map_entries`Simon Hauser
2022-06-30feat: `find_command` can be a function (#2000)Simon Hauser
2022-06-30refactor: make_entry more consistent (#1410)Yorick Peterse
drops `ignore_filename`, use `path_display= { "hidden" }` Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de>
2022-06-30feat: add option `use_default_opts` to `builtin.builtin` (#1996)Bjarki Baldursson Harksen
2022-06-30feat: no-ignore-parent shorthand option for find_files. (#1963)Jeremy Neal
2022-06-30break(git_files): change show_untracked default to false (#842)Ben Smith
2022-06-12doc: use correct option name for 'only_sort_text' (#1995)Jose Veiga
2022-05-18docs: reflect behavior of diagnostics bufnr nil (#1879)matt rice
2022-05-04fix(builtin.tags): custom filename width (#1842)Michael Maves
2022-05-04feat(live_grep): add glob and type filter shorthand opts (#1695)kylo252
2022-05-04feat: quickfixhistory picker (#1878)fdschmidt93
2022-04-30feat: support for builtin.commands to show buffer commands (#1889)milanglacier
2022-04-25break: remove lsp code actions (#1866)Simon Hauser
see :help telescope.changelog-1866 for more information
2022-04-25feat: switch to telescope.lua (#1873)Simon Hauser
Co-authored-by: Christian Clason <christian.clason@uni-due.de>
2022-04-22break: bump minimum required neovim version to 0.7 (#1851)Simon Hauser
2022-04-18feat: added trim option to make_entry.gen_from_quickfix (#1838)rowario
2022-04-18docs: add module prefix (#1847)Simon Hauser
2022-04-09feat(lsp_references): include current line optionSimon Hauser
close: #1821
2022-03-20docs: fix typo in builtin.pickers section (#1792)Dylan Byars
2022-03-12feat(diagnostics): additional filter options (#1610)Sean Mackesey
- root_dir. Useful to browse only project-scoped diagnostics. - buflisted status. Useful to exclude diagnostics from unlisted buffers, which are created by language servers that analyze the entire project/workspace (e.g. sumneko-lua).
2022-03-11feat(lsp): ignore_symbols option (#1745)tami5
Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de>
2022-03-11feat(lsp_references): expose include_declaration option (default still true) ↵tami5
(#1449)
2022-02-14fix: add opts.bufnr and opts.winnr to builtin picker (#1706)James Trew
2022-01-28feat (keymaps): add configuration options (#1703)daangoossens22
2022-01-14chore: remove deprecated shorthand functions lsp_*_diagnosticsSimon Hauser
From now on use Telescope diagnostics. For more informations see `:help telescope.changelog-1553` and `:help builtin.diagnostics`
2022-01-11break!: remove file_browser from builtins (#1453)fdschmidt93
The file_browser now has been fully removed. Please move to github.com/nvim-telescope/telescope-file-browser.nvim for a more featureful extension that replaces the builtin file browser.
2022-01-09fix: documentation for lsp_range_code_actions (#1644)Ole Strøhm
2021-12-29chore: deprecation notice for builtin.file_browser (#1574)fdschmidt93
`builtin.file_browser` will be removed in favor of `telescope-file-browser.nvim`. Primary rationale for carving out the file browser to an extension: - Faster development - Very expansive picker with larger feature set than builtins
2021-12-27chore: remove redundant run_builtin action (#1589)kylo252