| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-03-21 | fix: make git_status diff works with staged files (#2421) | Zoe Roux | |
| 2023-01-30 | fix: wrap nvim_buf_set_option in a protected call (#2346) | Kalka | |
| 2023-01-22 | docs: telescope.nvim spelling and grammar fixes (#2325) | vladislav doster | |
| Corrects the following issues: - article agreement - spelling | |||
| 2023-01-22 | docs: proof-read edits (#2311) | James Trew | |
| 2022-10-08 | fix: preview = true (#2168) | Simon Hauser | |
| 2022-09-04 | fix: previewer if custom_captures are set (#2156) | Simon Hauser | |
| 2022-08-09 | fix(previewer): regression on live_grep (#2119) | Fabian David Schmidt | |
| 2022-08-09 | fix(buffer_previewer): bypass path validation for terminal buffers (#2117) | Fabian David Schmidt | |
| 2022-07-10 | fix: from_entry escape and validation (#2058) | Simon Hauser | |
| 2022-07-07 | fix: autocmd, show desc if available (#2046) | Simon Hauser | |
| 2022-07-07 | chore: reformat with stylua 0.14.0 | Simon Hauser | |
| 2022-07-01 | break: cleanup preview.treesitter language setting (#1612) | marcel | |
| this follows nvim-treesitter more closely but enable can also be a table of enabled languages The config now looks like this: ```lua defaults = { preview = { treesitter = { enable = false, -- or enable = { "c" }, -- disable can be set if enable isn't set disable = { "perl", "javascript" }, }, }, }, ``` | |||
| 2022-07-01 | fix: crash in tags on enter for no results and random crash in previewer | Simon Hauser | |
| 2022-06-30 | fix: Inconsistent Color highlighting inside Git File Diff Preview | Simon Hauser | |
| fix #1098 | |||
| 2022-06-30 | feat: clear previewer if no item is selected (#2004) | Simon Hauser | |
| 2022-06-30 | chore: cleanup autocmd builtin (#1947) | Simon Hauser | |
| 2022-06-15 | fix: block autocommands when setting preview buffer (#2010) | zeertzjq | |
| Telescope creates most floating windows with `noautocmd = true`, so these windows do not trigger autocommands, but preview buffer is set in window using `nvim_win_set_buf()`, which triggers buffer autocommands. This may be unwanted, so block them using 'eventignore'. | |||
| 2022-06-13 | fix: TelescopePreviewerLoaded (#2005) | Simon Hauser | |
| 2022-05-02 | fix: termpreviewer scrolling (#1906) | Simon Hauser | |
| 2022-05-01 | fix: termopen previewer (#1901) | Simon Hauser | |
| - buffer leaking - still insert mode on confirm | |||
| 2022-04-18 | docs: add module prefix (#1847) | Simon Hauser | |
| 2022-03-26 | fix (tags|btags): escape all special characters (#1806) | ibhagwan | |
| 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-11 | fix: disable signcolumn in telescope windows (#1781) | Simon Hauser | |
| 2022-03-10 | refactor: remove redundant state in preview (#1761) | Laura | |
| 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-02-23 | fix builtin.autocommands throwing error (#1758) | Vedant Neema | |
| 2022-02-14 | fix: builtin `autocommands` previewer throws error (#1732) | daangoossens22 | |
| 2021-12-10 | fix: previewer for builtin.builtin (#1583) | smhc | |
| 2021-12-05 | fix: git_branch previewer highlighter error (#1543) | Simon Hauser | |
| 2021-11-30 | fix(highlight): Use TS built-in is_enabled function (#1513) | Patrick Ziegler | |
| The function just replicated the logic from is_enabled and assumed the `disable` setting is always a table. This is no longer the case (https://github.com/nvim-treesitter/nvim-treesitter/pull/2009), it can now also be a function. | |||
| 2021-11-26 | fix: issue when scrollbind is set (#1496) | Simon Hauser | |
| 2021-11-13 | fix: typo in previewers documentation (#1450) | Zoltan Klinger | |
| 2021-11-04 | fix: revert buffers previewer (#1400) | fdschmidt93 | |
| * Reverts #1120 many issues arise (mru, highlighting, settings inheritance, ...) when previewing actual buffers | |||
| 2021-10-20 | fix: preview title key and a bug with dynamic_title (#1350) | Simon Hauser | |
| 2021-10-04 | fix: stacking highlights in buffer previewer (#1294) | fdschmidt93 | |
| 2021-09-27 | feat: filetype_hook & improved docs; fix preview partial override (#1273) | fdschmidt93 | |
| 2021-09-27 | feat: add highlight group: TelescopePreviewMessage (#1286) | Sávio Carlos Martins Costa | |
| * feat: add highlight group: TelescopePreviewMessage * fix indentation from 4 to 2 spaces | |||
| 2021-09-26 | fix: tags now also support suppercollider tags (#1284) | Simon Hauser | |
| 2021-09-17 | fix: stacked hooks in buffer previewer (#1253) | fdschmidt93 | |
| 2021-09-17 | fix: fallback to syntax hl if treesitter fails (#1249) | fdschmidt93 | |
| 2021-09-16 | feat: skip/timeout preview if file cannot be easily previewed (#1231) | fdschmidt93 | |
| * For full configuration, see `:h telescope.defaults.preview` * Unblocks previewer on binaries, too large files, and files that take too long to read * Allows toggling treesitter highlighting for buffer_previewer * Allows to globally opt out of previewer | |||
| 2021-09-16 | docs: rewrite readme and add missing config values + builtin opts | Simon Hauser | |
| 2021-09-10 | fix: stale lnum in buffer previewer (#1229) | fdschmidt93 | |
| * fix: lnum to jump to might be stale eg when resuming buffer picker after changes | |||
| 2021-09-02 | fix: clear buffer previewer fully for caching (#1201) | fdschmidt93 | |
| 2021-09-01 | fix: string `display` for builtin.pickers (#1194) | fdschmidt93 | |
| 2021-09-01 | feat: allow caching and resuming picker (#1051) | fdschmidt93 | |
| * expose `cache_picker` in telescope.setup to configure caching, see `:h telescope.defaults.cache_picker` * add builtin.resume and builtin.pickers picker | |||
| 2021-09-01 | fix: autocommands cursor outside of buffer (#1157) | Omar Zeghouani | |
| Closes #957 | |||
| 2021-08-23 | fix: safer teardown of buffer previewer (#1158) | fdschmidt93 | |
| 2021-08-23 | fix: (terminal) buffer previewer (#1120) | fdschmidt93 | |
| Use existing buffers for buffer previewer to allow previewing special buffer types | |||
