| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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 | fix: wrap vim.cmd in pcall to avoid error (#1247) | gavynriebau | |
| When opening a file under swap from the "fd" finder results an error was printed after the file was opened, wrapping the call to "vim.cmd" in a pcall avoids the error. | |||
| 2021-09-16 | feat: support <pattern> for git-for-each-ref (git_branches) (#1248) | Anthony Nichols | |
| 2021-09-16 | docs: rewrite readme and add missing config values + builtin opts | Simon Hauser | |
| 2021-09-15 | feat: 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-13 | fix: default make_entry (#1239) | Simon Hauser | |
| from_string doesnt exist. Its called gen_from_string | |||
| 2021-09-13 | fix: make qf commands possible from any picker (#1237) | fdschmidt93 | |
| * Allow any qf cmd by defaulting to {lnum=1, col=1} for qflist if values are unset | |||
| 2021-09-12 | feat: smart path (#914) | qualious | |
| path_display = { "smart" } Co-authored-by: Deniz <deniz@admentum.se> Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de> | |||
| 2021-09-12 | fix: 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-12 | feat: lsp type definitions (#1224) | Rodrigodd | |
| 2021-09-10 | feat: checkhealth (#1066) | Senghan Bright | |
| * rebase on latest master * remove obsolete `popup.nvim` check * fixup: Move to health and fixups Co-authored-by: TJ DeVries <devries.timothyj@gmail.com> | |||
| 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-10 | feat: git merge branch action (#1220) | thibthib18 | |
| 2021-09-10 | fix: jump to tag if buffer has unsaved changes (#1230) | Simon Hauser | |
| 2021-09-09 | fix: restoring picker table/function opts (#1205) | fdschmidt93 | |
| * fix: missing opts for cached picker creation * fix: make properly overridable | |||
| 2021-09-09 | perf: load builtin submodules when a picker is invoked (#1191) | Dhruv Manilawala | |
| * Defer requiring submodules to when a builtin picker is actually invoked | |||
| 2021-09-09 | Add word to prompt title for grep string (#1184) | Dheepak Krishnamurthy | |
| 2021-09-07 | fix(actions_generate.which_key): overriding opts (#1221) | August Masquelier | |
| * Fix error from type mismatch on repeated calls of `action.which_key` when instantiated by `actions.generate` | |||
| 2021-09-05 | fix(lsp): Handle new signature for lsp handlers | TJ DeVries | |
| 2021-09-02 | fix: clear buffer previewer fully for caching (#1201) | fdschmidt93 | |
| 2021-09-02 | fix(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-01 | fix: string `display` for builtin.pickers (#1194) | fdschmidt93 | |
| 2021-09-01 | feat: show keymaps for builtin actions (#1084) | fdschmidt93 | |
| * Add default mappings `<C-/>`and `?` for insert and normal mode, respectively, to show registered keymappings (`actions.which_key`) attached to prompt buffer | |||
| 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(pickers): initial normal mode (#1165) | fdschmidt93 | |
| fix(pickers): opts.default_text and cursor are now correctly set for opts.initial_mode="normal" | |||
| 2021-09-01 | doc: generate docgen | Simon Hauser | |
| i forgot it. My bad | |||
| 2021-09-01 | feat: add utility for fetching buffer directory (#902) | Logan Connolly | |
| 2021-09-01 | fix: Should not block on git commands (#1176) | TJ DeVries | |
| 2021-09-01 | fix: autocommands cursor outside of buffer (#1157) | Omar Zeghouani | |
| Closes #957 | |||
| 2021-08-26 | fix: Fix line endings for windows (#1169) | TJ DeVries | |
| 2021-08-25 | fix(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-23 | fix: safer teardown of buffer previewer (#1158) | fdschmidt93 | |
| 2021-08-23 | fix(pickers): attach_mappings on builtins.buffers needs return (#1155) | Aiden Scandella | |
| 2021-08-23 | fix: (terminal) buffer previewer (#1120) | fdschmidt93 | |
| Use existing buffers for buffer previewer to allow previewing special buffer types | |||
| 2021-08-23 | refactor(pickers): remove additional fileopen (#1154) | tami5 | |
| unfinished work from #1122 | |||
| 2021-08-23 | pickers(*): Add support for &tags (#1122) | Emilia Simmons | |
| 2021-08-21 | hotfix: should have been there but wasnt | Simon Hauser | |
| ref: https://github.com/nvim-telescope/telescope.nvim/issues/1145#issuecomment-903161099 | |||
| 2021-08-21 | fix: for default sorters so we dont sort data after ordinal len if #prompt ↵ | Simon Hauser | |
| == 0 (#1146) | |||
| 2021-08-21 | fix(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-21 | fix: 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-21 | fix(command_parser): pcall for the loadstring (#1134) | Luke Kershaw | |
| 2021-08-20 | fix: Close async oneshot jobs on finder:close (#1140) | TJ DeVries | |
| 2021-08-20 | startup: load once and only when called for devicons (#1139) | TJ DeVries | |
| 2021-08-20 | feat: Use nvim_buf_set_extmark right_align to do the magic for us (#1138) | TJ DeVries | |
| 2021-08-20 | fix(sorters): fix sorters running after destroy, which can segfault (#1137) | TJ DeVries | |
| * fix(sorters): fix sorters running after destroy, which can segfault * fixup: Only check when we've set a status | |||
| 2021-08-20 | mapping: Remove center action after select_default action in default ↵ | Joshua Cao | |
| mappings. (#974) | |||
| 2021-08-20 | feat(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-19 | fix(command parser): evaluate valid lua expressions (#1128) | Luke Kershaw | |
| 2021-08-19 | Allow range parameters on command parser (#1123) | Jan Steinke | |
| 2021-08-19 | fix(command parser): discard invalid lua expressions (#1124) | Luke Kershaw | |
