summaryrefslogtreecommitdiff
path: root/lua/telescope/previewers
AgeCommit message (Collapse)Author
2023-03-21fix: make git_status diff works with staged files (#2421)Zoe Roux
2023-01-30fix: wrap nvim_buf_set_option in a protected call (#2346)Kalka
2023-01-22docs: telescope.nvim spelling and grammar fixes (#2325)vladislav doster
Corrects the following issues: - article agreement - spelling
2023-01-22docs: proof-read edits (#2311)James Trew
2022-10-08fix: preview = true (#2168)Simon Hauser
2022-09-04fix: previewer if custom_captures are set (#2156)Simon Hauser
2022-08-09fix(previewer): regression on live_grep (#2119)Fabian David Schmidt
2022-08-09fix(buffer_previewer): bypass path validation for terminal buffers (#2117)Fabian David Schmidt
2022-07-10fix: from_entry escape and validation (#2058)Simon Hauser
2022-07-07fix: autocmd, show desc if available (#2046)Simon Hauser
2022-07-07chore: reformat with stylua 0.14.0Simon Hauser
2022-07-01break: 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-01fix: crash in tags on enter for no results and random crash in previewerSimon Hauser
2022-06-30fix: Inconsistent Color highlighting inside Git File Diff PreviewSimon Hauser
fix #1098
2022-06-30feat: clear previewer if no item is selected (#2004)Simon Hauser
2022-06-30chore: cleanup autocmd builtin (#1947)Simon Hauser
2022-06-15fix: 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-13fix: TelescopePreviewerLoaded (#2005)Simon Hauser
2022-05-02fix: termpreviewer scrolling (#1906)Simon Hauser
2022-05-01fix: termopen previewer (#1901)Simon Hauser
- buffer leaking - still insert mode on confirm
2022-04-18docs: add module prefix (#1847)Simon Hauser
2022-03-26fix (tags|btags): escape all special characters (#1806)ibhagwan
2022-03-13feat: 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-11fix: disable signcolumn in telescope windows (#1781)Simon Hauser
2022-03-10refactor: remove redundant state in preview (#1761)Laura
2022-03-10fix: 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-23fix builtin.autocommands throwing error (#1758)Vedant Neema
2022-02-14fix: builtin `autocommands` previewer throws error (#1732)daangoossens22
2021-12-10fix: previewer for builtin.builtin (#1583)smhc
2021-12-05fix: git_branch previewer highlighter error (#1543)Simon Hauser
2021-11-30fix(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-26fix: issue when scrollbind is set (#1496)Simon Hauser
2021-11-13fix: typo in previewers documentation (#1450)Zoltan Klinger
2021-11-04fix: revert buffers previewer (#1400)fdschmidt93
* Reverts #1120 many issues arise (mru, highlighting, settings inheritance, ...) when previewing actual buffers
2021-10-20fix: preview title key and a bug with dynamic_title (#1350)Simon Hauser
2021-10-04fix: stacking highlights in buffer previewer (#1294)fdschmidt93
2021-09-27feat: filetype_hook & improved docs; fix preview partial override (#1273)fdschmidt93
2021-09-27feat: add highlight group: TelescopePreviewMessage (#1286)Sávio Carlos Martins Costa
* feat: add highlight group: TelescopePreviewMessage * fix indentation from 4 to 2 spaces
2021-09-26fix: tags now also support suppercollider tags (#1284)Simon Hauser
2021-09-17fix: stacked hooks in buffer previewer (#1253)fdschmidt93
2021-09-17fix: fallback to syntax hl if treesitter fails (#1249)fdschmidt93
2021-09-16feat: 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-16docs: rewrite readme and add missing config values + builtin optsSimon Hauser
2021-09-10fix: stale lnum in buffer previewer (#1229)fdschmidt93
* fix: lnum to jump to might be stale eg when resuming buffer picker after changes
2021-09-02fix: clear buffer previewer fully for caching (#1201)fdschmidt93
2021-09-01fix: string `display` for builtin.pickers (#1194)fdschmidt93
2021-09-01feat: 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-01fix: autocommands cursor outside of buffer (#1157)Omar Zeghouani
Closes #957
2021-08-23fix: safer teardown of buffer previewer (#1158)fdschmidt93
2021-08-23fix: (terminal) buffer previewer (#1120)fdschmidt93
Use existing buffers for buffer previewer to allow previewing special buffer types