summaryrefslogtreecommitdiff
path: root/lua/telescope/builtin
AgeCommit message (Collapse)Author
2021-10-12feat: filtering for dynamic workspace symbols (#1336)fdschmidt93
* enable `symbols` filtering opt for builtin.dynamic_workspace_symbols
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-10-07fix: code action for rust analyzer (#1311)Simon Hauser
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-22fix(lsp): check if action.command.arguments is nil (#1274)Jose Alvarez
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-16feat: support <pattern> for git-for-each-ref (git_branches) (#1248)Anthony Nichols
2021-09-16docs: rewrite readme and add missing config values + builtin optsSimon Hauser
2021-09-15feat: Remove version field if zero from codeaction calls (#738)Matsu
should fix code actions for jdtls Co-authored-by: TJ DeVries <devries.timothyj@gmail.com>
2021-09-12fix: add no more flags delimiter for ripgrep (#1217)Chase Colman
This matches the behavior of fzf, if a user needs to pass additional arguments they can use additional_args or change vimgrep_arguments.
2021-09-12feat: lsp type definitions (#1224)Rodrigodd
2021-09-10feat: git merge branch action (#1220)thibthib18
2021-09-09perf: load builtin submodules when a picker is invoked (#1191)Dhruv Manilawala
* Defer requiring submodules to when a builtin picker is actually invoked
2021-09-09Add word to prompt title for grep string (#1184)Dheepak Krishnamurthy
2021-09-05fix(lsp): Handle new signature for lsp handlersTJ DeVries
2021-09-02fix(picker): incorrect git stash picker command (#1195)Phelipe
* fix: should not use git log command in git stash picker * Update lua/telescope/builtin/git.lua Co-authored-by: tami5 <65782666+tami5@users.noreply.github.com>
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-01feat: add utility for fetching buffer directory (#902)Logan Connolly
2021-09-01fix: Should not block on git commands (#1176)TJ DeVries
2021-08-25fix(ts-highlighting): get hl name from the capture (#1166)Dhruv Manilawala
After this commit (https://github.com/neovim/neovim/commit/2460f0a7028550ea2d87492a4e8b95914fdba7b1), the `hl_cache` variable stores the hl_ID instead of the group name. Another way to get the hl name which is adopted from the method used here `_get_hl_from_capture`: ```lua local hl = vim.treesitter.highlighter.hl_map[query.captures[id]] ``` But, as the method covers another case, we can directly use it. I've also added the type guard so that, in the future, it does not explode like it does now. fixes: #1151
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-23refactor(pickers): remove additional fileopen (#1154)tami5
unfinished work from #1122
2021-08-23pickers(*): Add support for &tags (#1122)Emilia Simmons
2021-08-21hotfix: should have been there but wasntSimon Hauser
ref: https://github.com/nvim-telescope/telescope.nvim/issues/1145#issuecomment-903161099
2021-08-21fix(pickers): config mappings (#1147)Simon Hauser
This happens because we removed our packed deepcopy. So i refactored this part to not do a deepcopy
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-08-20feat(performance): Major performance improvements using async v2 from ↵TJ DeVries
@oberblastmeister (#987) * start: Working w/ async jobs * short circuit to using bad finder if you pass writer.
2021-08-19Allow range parameters on command parser (#1123)Jan Steinke
2021-08-12chore: separate commit date & time in git_branches (#1111)James Trew
2021-08-11fix: builtin `list_or_jump` now handles non list replies from the server (#1101)Marten Trip
fix for servers such as zls and clojure_lsp
2021-08-09fix: picker config (#1094)Simon Hauser
2021-08-04chore: reformat docs after tree-sitter-lua changesSimon Hauser
2021-08-04feat: add option jump_type to lsp_definitions and lsp_implementations (#1077)zeertzjq
2021-08-04fix: preview the correct man page section (#1076)zeertzjq
2021-08-04fix: escape newlines in code action title (#1012)Dhruv Manilawala
2021-08-04feat: live_grep and grep_string function for additional opts (allow file ↵Nazeeh ElDirghami
mask) (#1017)
2021-08-03fix: fix `file_browser` on windows and potentially other file opens (#1026)Luke Kershaw
2021-08-03fix: git_bcommit use absolute path for current file (#1059)Joshua Cao
2021-07-30feat: add git reset action for git commits picker (#999)Joel Palmer
2021-07-29feat: add no_ignore option to find_files (#1010)Lee Marlow
Allow find_files to find files ignored by .gitignore and other ignore files. This is supported by fd, rg, and fdfind.
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-17feat: add ^ and $ to characters handled by regex escape (#1007)Daniel Imfeld
2021-07-17fix: correct the prompt title (#1013)wongxy
2021-07-16feat: enable to preview themes (#980)wongxy
2021-07-14refactor: move from telescope.path to plenary.path (#473)anott03
This will deprecate telescope.path, we will remove it soon. Please move over to plenary.path Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de>