summaryrefslogtreecommitdiff
path: root/lua/telescope/builtin/internal.lua
AgeCommit message (Collapse)Author
2022-07-12chore: remove deprecated functions / messages (#2063)Simon Hauser
2022-07-01break: prefix internal files and add deprecation messages (#2032)Simon Hauser
2022-07-01fix: autocommands regressionSimon Hauser
2022-07-01feat: Add entry_index for entry_makersTJ DeVries
cleanup
2022-06-30fix: spell_suggest if cursor is at last char of wordSimon Hauser
fix #1977
2022-06-30chore: cleanup autocmd builtin (#1947)Simon Hauser
2022-06-30feat: add option `use_default_opts` to `builtin.builtin` (#1996)Bjarki Baldursson Harksen
2022-06-30fix(resume): previewer if toggled (#1957)Simon Hauser
2022-06-30break: deprecate utils.get_default utils.if_nil (#1545)Simon Hauser
2022-06-30chore: cleanup vim options (#1946)Simon Hauser
2022-06-02fix: pass user opts to planets picker (#1983)Anton
2022-05-29fix(builtin.commands): action error caused by remapping : (#1972)iwataka
2022-05-18fix: set tagstack when we jump with lsp in telescope (#1887)dagle
Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de>
2022-05-15fix: get mark list from opts.bufnr instead of using :marks (#1935)pjmtdw
Should fix marks when going through builtin.builtin
2022-05-04feat: quickfixhistory picker (#1878)fdschmidt93
2022-04-30feat: support for builtin.commands to show buffer commands (#1889)milanglacier
2022-04-30fix: man_pages respect nosplitright for <c-v>Simon Hauser
followup to bf16fe620fa8290eb4c575caec0101b6e1dc5dcd
2022-04-30fix: help_tags respect nosplitright for <c-v>Simon Hauser
fix #1897
2022-04-25fix(help_tags): exclude invalid help-tag that errorsSimon Hauser
fix #1858
2022-04-22fix: fix keep insert when going from telescope window to telescope window ↵kylo252
(#1600) Also fixes `initial_mode` Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de>
2022-04-10fix(builtin.colorscheme): also restore &background (#1835)wongxy
2022-04-08fix: save position into jumplist before 'edit' action (#1234)Joshua Cao
currently enabled for some builtins. You can manually enable it by adding `push_cursor_on_edit = true` to the builtin options. But feel free to open a PR if you find a builtin that needs this option enabled.
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-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-14fix: add opts.bufnr and opts.winnr to builtin picker (#1706)James Trew
2022-02-13feat(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-28feat (keymaps): add configuration options (#1703)daangoossens22
2022-01-28fix (autocommands): doesn't show all autocommands (#1717)daangoossens22
2022-01-14feat: make results pane of builtin `keymaps` more readable (#1684)daangoossens22
2022-01-03fix: picker for keymaps error with new api for keymaps (#1646)Sebastian Lyng Johansen
2021-12-27chore: remove redundant run_builtin action (#1589)kylo252
2021-12-19fix: `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-10break: 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-11-18fix: use `string.format` on `builtin.resume` error message (#1465)Luke Kershaw
2021-11-04fix: revert buffers previewer (#1400)fdschmidt93
* Reverts #1120 many issues arise (mru, highlighting, settings inheritance, ...) when previewing actual buffers
2021-10-24fix: 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-12fix: loclist can have non current buf entries (#1333)fdschmidt93
2021-10-09fix: alias cwd_only and only_cwd option for buffers and oldfiles (#1316)Patrick Ziegler
* Alias cwd_only and only_cwd option for builtins Fixes #1199 Closes #1275
2021-09-27fix: show error message when nothing is selected (#1289)Jonas Strittmatter
* fix: always show error message when nothing is selected This continues the fixes done in 4816a27d7680feed293d21a945c476947af20d29 (ref #1283) * Use correct variable name (selection) and add one more nil check * Fix indentation
2021-09-26fix: print error mesage and dont close telescope if nothing is selected (#1285)Simon Hauser
2021-09-22fix: help_tags if file_ignore_patterns = { "doc" } is set (#1279)Rafael A. Madriz
2021-09-19fix(builtin): internal.help_tags not finding all tags (#1258)Javier Lopez
After changes on &rtp in neovim/neovim it's neccessary to use `nvim_get_runtime_file` to actually find all the runtime files.
2021-09-16docs: rewrite readme and add missing config values + builtin optsSimon Hauser
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-08-23fix(pickers): attach_mappings on builtins.buffers needs return (#1155)Aiden Scandella
2021-08-23fix: (terminal) buffer previewer (#1120)fdschmidt93
Use existing buffers for buffer previewer to allow previewing special buffer types
2021-08-21fix: some improvements for telescope.symbols if run in insert mode (#1117)Simon Hauser
- keep insert if run in insert mode - also look in `.local/share/nvim/telescope/symbols/*.json` for symbols can be overriden with `symbol_path`
2021-07-23chore: use stylua for formatting (#1040)Simon Hauser
* chore: stylua job and config * reformat with stylua
2021-07-19feat: sort_mru for builtin buffers (#1028)Simon Hauser
:help builtin.buffers
2021-07-17fix: correct the prompt title (#1013)wongxy