| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-03-26 | chore: fix lint errors from latest ci run | Simon Hauser | |
| 2022-03-24 | fix: typo in a LSP error message (#1805) | Mathijs Bakker | |
| 2022-03-20 | docs: fix typo in builtin.pickers section (#1792) | Dylan Byars | |
| 2022-03-13 | feat: improve UX with vim.notify (#1763) | tami5 | |
| * fix(notify): don't report request on new line * ref(notify): update message format * ref(msgs): always quote values + decrease duplication * fix(ci): undefined variables * ref(actions): temporary silent actions.__index errors * cleanup * revert: panic effort, we continue to use error for those Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de> | |||
| 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-12 | fix(find_files): follow with unix `find` command (#1787) | i3Cheese | |
| 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-03-10 | fix(*grep): escape dot when not using regex (#1784) | Slotos | |
| 2022-03-10 | fix: man_pages previewer, respecting MANPATH and apropos output parsing (#1764) | Simon Hauser | |
| - introducing putils writer and use it rather than using PAGER env var - introducing env for lua/telescope/_.lua job interface - to respect MANPATH (and PATH just in case) - fix for apropos output parsing might return e.g. `alacritty, Alacritty` We need to split on first `,` | |||
| 2022-03-08 | fix: treesitter picker with lua (defintions) (#1779) | Simon Hauser | |
| 2022-02-14 | fix: add opts.bufnr and opts.winnr to builtin picker (#1706) | James Trew | |
| 2022-02-13 | feat(spell_suggest): ignore spell setting (#1744) | Roland Fredenhagen | |
| z= works even when spell is not set. I think it would be nice if Telescope would behave the same. | |||
| 2022-01-28 | feat (keymaps): add configuration options (#1703) | daangoossens22 | |
| 2022-01-28 | fix (autocommands): doesn't show all autocommands (#1717) | daangoossens22 | |
| 2022-01-28 | fix(lsp): add missing offset encoding (#1718) | Chinmay Dalal | |
| 2022-01-18 | fix: add offset encoding to `vim.lsp.util.locations_to_items()` call (#1694) | Chinmay Dalal | |
| 2022-01-18 | fix: add offset encoding to `apply_workspace_edit` call (#1697) | Richard Mathieson | |
| 2022-01-14 | feat: make results pane of builtin `keymaps` more readable (#1684) | 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-14 | fix (nightly): add offset encoding to vim.lsp.util.jump_to_location() call ↵ | Chinmay Dalal | |
| (#1688) | |||
| 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(builtin.treesitter): make sure that kind is not nil | Simon Hauser | |
| If kind is nil then prefilter throws an error fix #1631 | |||
| 2022-01-09 | fix: documentation for lsp_range_code_actions (#1644) | Ole Strøhm | |
| 2022-01-06 | fix: support find_command along with shorthand options (#1642) | pedro757 | |
| 2022-01-03 | fix: picker for keymaps error with new api for keymaps (#1646) | Sebastian Lyng Johansen | |
| 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 | |||
| 2021-12-27 | chore: remove dot at the beginning (#1552) | Simon Hauser | |
| We added this for rg 13.0 release because it was needed but it doesnt seem to be needed anymore. Weird This might be due to some changes in neovim or due to changes to jobs | |||
| 2021-12-27 | chore: remove redundant run_builtin action (#1589) | kylo252 | |
| 2021-12-27 | feat(diagnostics): workspace or document in title (#1619) | fdschmidt93 | |
| 2021-12-19 | fix: `builtin` only have entries for extension functions (#1587) | Luke Kershaw | |
| * fix: `builtin` only have entries for extension functions * fix: add check for underscore and explanation of which functions included | |||
| 2021-12-10 | feat: migrate to Telescope diagnostics using vim.diagnostic (#1553) | Simon Hauser | |
| 2021-12-10 | break: bump the minimum required neovim version to 0.6 or higher (#1549) | Simon Hauser | |
| So we can use `vim.json` and `vim.diagnostics`. If you aren't able to update to 0.6.* yet you should pin the previous commit. | |||
| 2021-12-06 | fix: git stash entry formatting (#1452) | Farbod Salamat-Zadeh | |
| 2021-12-06 | fix: current_buffer_fuzzy_find in vue files (#1561) | h0adp0re | |
| 2021-12-05 | fix: lsp concatenate err (#1558) | Jun | |
| 2021-12-05 | fix: current_buffer_fuzzy_find check if nvim-ts is okay before calling ↵ | Simon Hauser | |
| is_enabled | |||
| 2021-12-03 | fix: dont change highlights when using current_buffer_fuzzy_find (#1524) | Simon Hauser | |
| this happens if parsers are installed but highlight is set to false. So parsing the buffer with treesitter will automatically apply them to the buffer but because treesitter highlighting is disabled it will change the buffer. Its stupid and i dont know why you want parser installed but highlighting disabled but whatever. We just dont calculate highlights for people who have highlight set to false | |||
| 2021-12-02 | fix: lsp_workspace_symbols (#1535) | Simon Hauser | |
| 2021-12-02 | fix: make lsp_* async (#1506) | Chinmay Dalal | |
| 2021-11-18 | fix: use `string.format` on `builtin.resume` error message (#1465) | Luke Kershaw | |
| 2021-11-15 | chore: reformat files.lua after stylua update (#1456) | fdschmidt93 | |
| 2021-11-13 | fix: LSP code actions not working for some language servers (#1381) | klausweiss | |
| 2021-11-13 | feat(worktrees): added support for bare repo git operations (#1370) | Pranav Rao | |
| 2021-11-04 | fix: revert buffers previewer (#1400) | fdschmidt93 | |
| * Reverts #1120 many issues arise (mru, highlighting, settings inheritance, ...) when previewing actual buffers | |||
| 2021-11-04 | breaking: bump nvim version requirement to 0.5.1 (#1406) | Julian Fricker | |
| 2021-10-28 | fix: buitin.tags broke when tags-file was in wildignore (#1387) | Denis Cornehl | |
| regression from 6f829bf6bc333809dd97e532dbc88a7fcf297b02 https://github.com/nvim-telescope/telescope.nvim/pull/1122 | |||
| 2021-10-24 | fix: opts.git_command for files, commits, bcommits (#1374) | Simon Hauser | |
| 2021-10-24 | fix: Exclude unlisted lsp buffers in oldfiles picker (#1219) | A. Schueler | |
| Files opened by LSPs are listed with a trailing `line 0` instead of a date like files opened by the user. Use this behavior to filter out buffers that should not be displayed in oldfiles. | |||
| 2021-10-12 | fix: Bug with nil action error (#1340) | Rafael Delboni | |
| only affects 0.5.1 | |||
