summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-05-11create new action: git switch (#798)Kyoichiro Yamada
* create new action: git switch If the branch already exists in local, switch to that. If the branch is only in remote, create new branch tracking remote and switch to new one. * fix a point of review * fix a point of review: map to git-switch action * Revert "fix a point of review" This reverts commit 017ce424a3adfe1b3712a421385cfc3f4258a0fb. * undocument header comment
2021-05-11feat: add git_stash picker (#800)Amirreza Askarpour
2021-05-09fix: add check for nil win_id in Picker.close_windows (#831)Luke Kershaw
This probably fixes issues with nobuflisted buffers (startify, dashboard-nvim and probably more)
2021-05-09feat: jumplist picker and jump to row/col on existing buffers. (#813)caojoshua
2021-05-08feat: add use_regex option to grep_string (#767)Khalid
2021-05-08feat: add option to configure width of items in gen_from_lsp_symbols() (#812)Tom Praschan
2021-05-08fix: oldfiles cwd_only that include backslashes (windows) (#820)Luke Kershaw
2021-05-08feat: Add only_sort_tags option for builtin.tags (#825)Eugene Oliveros
2021-05-06handle errors from buf_request_sync (#819)William Boman
2021-04-28fix: file browser navigate to parent directory on windows (#786)Alex Fischer
2021-04-28fix: Fix things for conniTJ DeVries
2021-04-28fix: use treesitter language name instead of ft if available (#801)Dhruv Manilawala
* fix: use treesitter language name if available This will fix the problem where the filetype is different than the treesitter lang name. Eg., filetyep -> "sh", langname -> "bash" * refactor: use treesitter only if the query object is available * refactor: ok -> parser_ok ;)
2021-04-27feat: Just straight up error right away for nvim 0.4.4TJ DeVries
2021-04-23docs: Git actions docs fix (#787)Ben Smith
* Removed function headers for git actions * [docgen] Update doc/telescope.txt skip-checks: true * [docgen] Update doc/telescope.txt skip-checks: true * Added TODO & comments instead of removing headers * [docgen] Update doc/telescope.txt skip-checks: true Co-authored-by: Github Actions <actions@github>
2021-04-23feat: add search history picker (#769)Volodymyr Kot
Co-authored-by: Volodymyr Kot <vkot@palantir.com>
2021-04-22feat: allow reset prompt to set text as wellTJ DeVries
2021-04-22docs: add other actions modules (#792)TJ DeVries
* docs: add other actions modules * [docgen] Update doc/telescope.txt skip-checks: true * fixup * [docgen] Update doc/telescope.txt skip-checks: true Co-authored-by: Github Actions <actions@github>
2021-04-22fix checking for git dir in a bare repo (#757)PolarMutex
* fix checking for git dir in a bare repo * revert last change and look for worktree * fix lint error * [docgen] Update doc/telescope.txt skip-checks: true Co-authored-by: Brian Ryall <brian.ryall@udri.udayton.edu> Co-authored-by: Github Actions <actions@github>
2021-04-20fix: support multiple clients in lsp code actions (#722)William Boman
* fix: support multiple clients in lsp code actions * no goto * reduce diff a bit * use displayer, also include lsp client name for each entry * review comments
2021-04-20lsp: Implement lsp.implementations similar to lsp.definitions (#743)Viktor Kojouharov
Fixes #730
2021-04-17fix: live_grep path appending with cwd when already absolute (#768)August Masquelier
2021-04-16fix: Default to an empty sorter, so we always have oneTJ DeVries
2021-04-15Fix: open files with the same name (#697) (#741)Lars Haalck
* Fix: open files with the same name (#697) * Fix: fire vim.cmd if command is not edit (#760)
2021-04-15feat: table layout for builtin commands (#754)Weihang Lo
2021-04-15feat: Add more sorter hooks (#752)TJ DeVries
* feat: Add more sorter hooks * fix breaking conni brain
2021-04-14picker(live_grep): add option to grep only over open files (#666)James Walmsley
2021-04-14git(action): create and checkout branch (#755)Ben Smith
* added git action for creating and checking out a new branch, added basic docstrings for git actions * Added confirmation for creation of new branch, changed default mapping to <c-u> * Switched back to `<c-a>` default mapping for now
2021-04-13readme: fix broken links and spelling errors (#753)Ben Smith
2021-04-13added a new DynamicFinder (which can be used with rust_analyzer) (#705)oberblastmeister
* started tree finder * made tree more ergonmic * deleted unneeded comments * added stack root and node * added preprocessing * using staticfinder instead of separate finder, custom entry maker * added selections and remember * removed unused stuff * fixed warnings * fixed remember and selections pop * started branch * added go function * changed up test * removed root parameter from go function * changed back to not do_close * removed node and leaf classes * removed stack class instead for table.insert and table.remove * fixed warning * started branch * added better preprocessor and tree class * started some tests * finished making tests pass * cleaned up * fixed make entry and updated example * started * added some stuff * deleted uneeded stuff * added cancelable * changed workspace requester * use better cancellation mechanism * removed accidental stuff * removed useless print * delete more useless stuff * rename to dynamic * added request cancellation * CHECK IF NIL * removed unused * added trash global variable
2021-04-09feat: add icons to git_status finder (#401)Senghan Bright
* add icons to git_status finder * fix lint warning * fix incorrect removed icon * refactor, more states/icons * refactor, widen columns to allow for 3char width icons * attempted col width fix * fixup: small comments Co-authored-by: TJ DeVries <devries.timothyj@gmail.com>
2021-04-09fix: update to newer code (#744)TJ DeVries
2021-04-09pickers(buffers): added only_cwd opt (#739)Nitin Chaudhary
closes #733 Co-authored-by: Nitin Chaudhary <nitin.chaudhary@sap.com>
2021-04-08feat: asyncify pickers - except for live_grep (#709)TJ DeVries
* something kind of works already * yayayayayayayayayayayayayayayayayayayayayayayayayayayayayayayayaya * use async for everything besides live jobs * fix: fixup autocmds previewer * fix: lints for prime * temp: Add example of how we can think about async sorters * feat: Allow picker to decide when to cancel * fix: simplify scoring logic and tests * fixup: name * fix: Move back towards more backwards compat methods * fixup: Remove results from opts * fixup: remove trailing quote * fixup: Attempt to clean up some more async items. Next is status * wip: Add todo for when bfredl implements extmarks over the EOL * wip * fixup: got em * fixup: cleaning * fixup: docs
2021-04-07fix: Use standardized names for current buffer fuzzy find (#737)TJ DeVries
2021-04-07fix(git_branches): use the quoted fields instead of json-formatting and fix ↵Kyoichiro Yamada
regressions with #695 (#704)
2021-04-06feat: buf highlights for current buffer fuzzy find (#732)TJ DeVries
* feat: Add buffer highlights from treesitter * fix: Handle not having tree sitter in some buffers * fixup * fixup * fixup: move back to old node
2021-04-04feat: current buffer fuzzy find improvements (#694)August Masquelier
If you don't want to have a previewer disable it with `:Telescope current_buffer_fuzzy_find previewer=false` To ignore empty lines do: `:Telescope current_buffer_fuzzy_find skip_empty_lines=true`
2021-04-03Fix git rebase input message (#720)Thiago Medeiros
2021-04-03Fix #707: lsp_workspace_symbols add support for multiple clients. (#718)ovikk13
2021-03-31fix: better relative path output in `live_grep` and `grep_string` (#683)Jesse Leite
2021-03-30fix: no longer leaking one buffer previewer in some occasions (#664)Simon Hauser
* fix: stop leaking last preview buffer * fix: formatting for docs * fix: async check if file is dir or not and - fix for in_fast_event when overriding file_maker * fix: filtering for space in keymaps and fzy * fix: show correct result numbers when using file_ignore_patterns * Handle early close. Caused because we actually cleaning up buffers now * cleanup * [docgen] Update doc/telescope.txt
2021-03-29picker(git_branch): show committer, upstream and date (#695)Kyoichiro Yamada
* wip: rich finder for branches for: https://github.com/nvim-telescope/telescope.nvim/issues/569 * fix some diagnostics
2021-03-21Fix prompt titles. Closes #OCD. (#675)Jesse Leite
2021-03-18Improve oldfiles Picker (#657)Jesse Leite
2021-03-17fix: Do not error with clearing namespace on clearing displayTJ DeVries
2021-03-17fix: related to #13 telescope-project, enter insert mode on prompt close (#637)Christopher Laidler
* fix: related to #13 telescope-project, enter insert mode on prompt close * fix: related to #13 telescope-project, enter insert mode on prompt close * revert changes made in error * fix PR issue * fix: undefined variable do_close * use action_state as actions is deprecated * [docgen] Update doc/telescope.txt skip-checks: true Co-authored-by: Github Actions <actions@github>
2021-03-14feat & fix: Command History Picker (#656)tami5
2021-03-14Prefer vim.api over vim.fn (#650)Volodymyr Kot
See https://github.com/neovim/neovim/pull/13875 for details.
2021-03-12feat: add `add_to_qflist`, `add_selected`, and `smart_add` (#636)elianiva
* feat: add `add_to_qflist`, `add_selected`, and `smart_add` * refactor: use local function
2021-03-09nit: Don't reset highlights on detachTJ DeVries