summaryrefslogtreecommitdiff
path: root/lua/telescope/builtin.lua
AgeCommit message (Collapse)Author
2020-11-16feat: Add git builtins (#240)Simon Hauser
Conni2461 is a great coder and contributor :)
2020-11-16feat: Allow overriding actions from mappings (#248)TJ DeVries
2020-11-15fix: use vim.lsp.diagnostic instead of deprecated util function. (#244)Senghan Bright
2020-11-15fix lsp_code_action error when no code action available (#243)YIQUN
the results variable can be nil when there's no code action available, check for nil results before checking the length
2020-11-15Merge pull request #230 from parmort/rework-helptagstami5
Rework helptags builtin, including helps tags from installed plugins
2020-11-14feat: Add built-in to search keymaps (#191)Carlos Hernandez
* Add built-in to search keymaps * Re-factor maps for cleaner codes Rather than use function to return a results table for various key maps. Assign results the key maps table itself. This makes for cleaner code. * Keymaps: escape termcodes using built-in util * Rename builtin.maps to builtin.keymaps
2020-11-13Fix git files in non-git directories (#239)Anirudh Haritas Murali
0 is not a false value in Lua. Compare to 1 to check if it is a git directory. Fixed error syntax.
2020-11-13fix: Multiple Previewer fixes (#225)Simon Hauser
Fixes previews for files beginning with ~/ Previewer will now show directories Fix if clause with vim.fn.executable
2020-11-13feat: Add c-v, c-x, c-t to help_tags (#229)tami5
2020-11-09Rename and simplify make_entry functionNolan Prochnau
2020-11-09Grab helptags from all paths defined in rtpNolan Prochnau
2020-11-02feat: v1 options menu (#133)Senghan Bright
Still has a bunch of improvements that can be done, but wanted to merge in some of the related changes. * options parser * wip: vimoptions finder * feat: pre-populate ex-command line with `:set foo=` * use options current value when populating command line * fix: use result.raw_value to store original option value * . * options: Continue work on option finder * [WIP]: Tue 27 Oct 2020 10:34:09 PM EDT * [WIP]: Mon 02 Nov 2020 08:20:13 PM EST * [WIP]: Mon 02 Nov 2020 09:04:23 PM EST Co-authored-by: TJ DeVries <devries.timothyj@gmail.com>
2020-10-28Fix find_command for find_files when using find executable (#199)Simon Hauser
Closes: #193
2020-10-24Add telescopes provider (#168)Simon Zeng
Amendment: replace the old `builtin`
2020-10-19feat: Add ability to configure default sortersTJ DeVries
2020-10-19Ensure git_files uses the git root directory as cwd (#180)Malcolm Ramsay
* fix: Ensure git_files uses the git root directory as cwd This sets the cwd option of the git_files builtin to use the root of the git directory when the cwd option doesn't already exist. When git lists files, it is relative to the root of the git directory, rather than the current working directory. This caused problems when using git_files in a subdirectory of the git root (see #174). This commit fixes the issue by always setting the cwd as the root of the git directory. * ref: Use neovim's system caller for command This removes the need for an additional lua function to extract the shell response, making use of inbuilt vim functionality.
2020-10-17refactor: prompt->prompt_title (#169)Alvaro Muñoz
* refactor: prompt->prompt_title ; prompt_prefix->prompt_text * undo prompt_prefix rename * undo prompt_prefix rename
2020-10-15fix: Use entry maker for marksTJ DeVries
2020-10-12Add Colorscheme and Marks Support and Telescope Commands (#167)Raphael
* Add Telescope Commands * Add Colorscheme support * Add Command for coloscehme * add marks support * rename commad
2020-10-08fix: #125TJ DeVries
2020-10-08feat: Do a bit better sorting for command historyTJ DeVries
To be honest, I'm not 100% sure this is fantastic, but it's definitely a step in the right direction for command history. Closes: #150
2020-10-07fix: Changed git command to show all files inside project (#129)Norlock
2020-10-07feat: Manpages finder (output of apropos) (#134)Senghan Bright
First edition. Sometimes weird things can happen with the previewer, but I think I got it 99% working. * feat: Manpages finder (output of apropos) * fixup: Add previewer and fix comments Co-authored-by: TJ DeVries <devries.timothyj@gmail.com>
2020-10-05feat: Add `find` command support (#145)Nolan Prochnau
2020-10-04feat: builtin - lua package reloader (#132)Senghan Bright
2020-09-29feat: Add status, better debug, and some associated refactorsTJ DeVries
* [WIP]: Mon 28 Sep 2020 01:08:24 PM EDT * add much much better tracking. so much less hax * status updates, oneshot job updates, etc. * remove temp function * add status function * asdfasdfasdf
2020-09-25fix: #105TJ DeVries
Warn users if they have `report` set to a bad value In the future, we could try and change it and put it back, but that feels a bit bad. If anyone can tell me WHY you would want this, then we can do it.
2020-09-25feature: Vim help-tags picker (#117)Senghan Bright
* feature: Vim help-tags picker * fix: filtered results were wrong because of missing `entry.value` * fix: filtered (Vim only help) items are listed in results as empty entries. * fix: avoid search history pollution by replacing / in cmd returned by taglist() with search() * fix: improve search() formatting * fix: escape tilde in search() command * fix: improve help-preview * fix: improve search() * fix: search() string fixes. * fix: use no magic to do magic Co-authored-by: TJ DeVries <devries.timothyj@gmail.com>
2020-09-22fix: Don't pass anything if word match is emptyTJ DeVries
2020-09-22wip: Add ability to search for word match w/ rgTJ DeVries
2020-09-18fix: Add timeout param to all buf_requests and move to 10 secondsTJ DeVries
2020-09-18fix: add timeout paramTJ DeVries
2020-09-18feat: add some tests and improve perfTJ DeVries
2020-09-17feat: Improved previewers and cleanupTJ DeVries
2020-09-16feat: Easy Termopen for Previewer (#88)TJ DeVries
First pass, but seems to work. Fixed a few other related items, so pushing it to master now. * [WIP]: Wed 16 Sep 2020 05:17:10 PM EDT * [WIP]: Wed 16 Sep 2020 06:10:33 PM EDT * [WIP]: Wed 16 Sep 2020 06:19:43 PM EDT
2020-09-16Add sorter to live_grep (#61)Christian Clason
2020-09-16fix: use double dash to fix special filenames (#87)Oleg Matrokhin
Co-authored-by: Oleg Matrokhin <o.matrohin@softpro.com>
2020-09-16feat: add builtin.lsp_code_actions (#77)TimUntersberger
* fix: use correct path separator on windows * fix: add utils.get_separator * asdf * feat: add builtin.commands * change commands sorter * change sorter * change sorter * feat: make it possible to specify the find_command for find_files * temp * feat: add find_command option for find_files * wip * fix: execute code action
2020-09-13feat: add find_command option for find_files (#73)TimUntersberger
2020-09-12feat: Add support for ripgrep in "find_files" builtin (#70)Corentin Brunel
* feat: Add support for ripgrep in "find_files" builtin * docs: Add mention about "ripgrep" for find_files builtin
2020-09-12feat: Adds shorten_path, show_all_buffers opts and fixes alignment (buffers ↵Simon Hauser
builtin) (#32)
2020-09-12feat: builtin.commands (#54)TimUntersberger
* fix: use correct path separator on windows * fix: add utils.get_separator * asdf * feat: add builtin.commands * change commands sorter * change sorter * change sorter
2020-09-12fix: Pass cwd down correctly for find filesTJ DeVries
2020-09-11Merge pull request #59 from clason/patch-1Dave Lage
Restrict builtin find_files to files
2020-09-11feat: make buffer work much betterTJ DeVries
2020-09-11Restrict find_files to filesChristian Clason
2020-09-11feat: add current file fuzzy finderTJ DeVries
2020-09-10builtin.fd -> builtin.find_filesTJ DeVries
2020-09-10Allow easily changing grep argumentsTJ DeVries
2020-09-08temp: limit requests for live grepTJ DeVries