| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-03-22 | feat(treesitter): symbols & ignore symbols options (#2338)HEADmaster | Maksym Klishevych | |
| * feat(treesitter): symbols & ignore symbols options * renamed the function passed to utils.filter_symbols --------- Co-authored-by: Maksym Klishevych <max@klishevy.ch> | |||
| 2023-02-19 | feat: support selection for grep_string (#2333) | cristiansofronie | |
| 2023-02-19 | fix: apply jump_type only if the definition file is different from the ↵ | Luyu Huang | |
| current file (#2324) | |||
| 2023-02-19 | docs: add missing documentation for builtin lsp symbols (#2365) | Uraza | |
| 2023-01-30 | feat: Allow filtering for oldfiles and buffers (#2353) | Svetlozar Iliev | |
| 2023-01-22 | docs: proof-read edits (#2311) | James Trew | |
| 2023-01-11 | feat(pickers): add opt.show_remote_tracking_branches to git_branches (#2314) | Matt Taylor | |
| 2022-11-28 | feat: add configuration to fix encoding of output of find_command in ↵ | zbq | |
| find_files (#2232) | |||
| 2022-11-27 | feat(builtin.keymaps): display noremap/buffer indicators and add lhs filter ↵ | Xavier Young | |
| (#2246) | |||
| 2022-11-23 | feat(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-06 | feat: add jump_type option for lsp_references (#2218) | Gutyina Gergő | |
| 2022-10-26 | fix: always load the up to date picker config on picker open | Simon Hauser | |
| 2022-10-24 | feat: allow table as additional args in live grep and grep string (#2139) | Gutyina Gergő | |
| 2022-09-04 | docs: update for git_files and live_grep (#2133) | Sam Rosenthal | |
| 2022-08-27 | fix(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-22 | fix: move the moon behind show_moon option and update documentation (#2072) ↵ | steven | |
| (#2079) | |||
| 2022-07-06 | docs: add missing opts docs for lsp builtins | Simon Hauser | |
| 2022-07-06 | feat: grep_open_files for builtin.grep_string (#2039) | Simon Hauser | |
| 2022-07-01 | break: prefix internal files and add deprecation messages (#2032) | Simon Hauser | |
| 2022-07-01 | feat: search_file option for builtin fd command (#2029) | Turiiya | |
| 2022-06-30 | feat(rg): pass multiple globs to rg by default (#2003) | Anton | |
| 2022-06-30 | feat(builtin.lsp): implement builtin handlers for ↵ | Manuel | |
| lsp.(incoming|outgoing)_calls (#1484) Fixes #863 | |||
| 2022-06-30 | docs: clarify docs around `search_dirs` and `map_entries` | Simon Hauser | |
| 2022-06-30 | feat: `find_command` can be a function (#2000) | Simon Hauser | |
| 2022-06-30 | refactor: 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-30 | feat: add option `use_default_opts` to `builtin.builtin` (#1996) | Bjarki Baldursson Harksen | |
| 2022-06-30 | feat: no-ignore-parent shorthand option for find_files. (#1963) | Jeremy Neal | |
| 2022-06-30 | break(git_files): change show_untracked default to false (#842) | Ben Smith | |
| 2022-06-12 | doc: use correct option name for 'only_sort_text' (#1995) | Jose Veiga | |
| 2022-05-18 | docs: reflect behavior of diagnostics bufnr nil (#1879) | matt rice | |
| 2022-05-04 | fix(builtin.tags): custom filename width (#1842) | Michael Maves | |
| 2022-05-04 | feat(live_grep): add glob and type filter shorthand opts (#1695) | kylo252 | |
| 2022-05-04 | feat: quickfixhistory picker (#1878) | fdschmidt93 | |
| 2022-04-30 | feat: support for builtin.commands to show buffer commands (#1889) | milanglacier | |
| 2022-04-25 | break: remove lsp code actions (#1866) | Simon Hauser | |
| see :help telescope.changelog-1866 for more information | |||
| 2022-04-25 | feat: switch to telescope.lua (#1873) | Simon Hauser | |
| Co-authored-by: Christian Clason <christian.clason@uni-due.de> | |||
| 2022-04-22 | break: bump minimum required neovim version to 0.7 (#1851) | Simon Hauser | |
| 2022-04-18 | feat: added trim option to make_entry.gen_from_quickfix (#1838) | rowario | |
| 2022-04-18 | docs: add module prefix (#1847) | Simon Hauser | |
| 2022-04-09 | feat(lsp_references): include current line option | Simon Hauser | |
| close: #1821 | |||
| 2022-03-20 | docs: fix typo in builtin.pickers section (#1792) | Dylan Byars | |
| 2022-03-12 | feat(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-11 | feat(lsp): ignore_symbols option (#1745) | tami5 | |
| Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de> | |||
| 2022-03-11 | feat(lsp_references): expose include_declaration option (default still true) ↵ | tami5 | |
| (#1449) | |||
| 2022-02-14 | fix: add opts.bufnr and opts.winnr to builtin picker (#1706) | James Trew | |
| 2022-01-28 | feat (keymaps): add configuration options (#1703) | daangoossens22 | |
| 2022-01-14 | chore: remove deprecated shorthand functions lsp_*_diagnostics | Simon Hauser | |
| From now on use Telescope diagnostics. For more informations see `:help telescope.changelog-1553` and `:help builtin.diagnostics` | |||
| 2022-01-11 | break!: 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-09 | fix: documentation for lsp_range_code_actions (#1644) | Ole Strøhm | |
| 2021-12-29 | chore: 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 | |||
