summaryrefslogtreecommitdiff
path: root/lua/telescope/make_entry.lua
AgeCommit message (Collapse)Author
2020-11-23Register finder (#275)Senghan Bright
builtin: Registers finder. view and edit vim registers.
2020-11-21feat: Add highlights builtin (#267)Simon Hauser
2020-11-16feat: Add tags (#219)Simon Hauser
2020-11-16feat: Add git builtins (#240)Simon Hauser
Conni2461 is a great coder and contributor :)
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-11-02fix: #211TJ DeVries
2020-10-25feat: Add ability to turn off devicon colorsTJ DeVries
2020-10-24feat: Use colors from nvim-deviconsTJ DeVries
2020-10-15fix: Use entry maker for marksTJ DeVries
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-07feat: Use metatables to use less memory (#152)TJ DeVries
Instead of storing everything in key / value pair hashes, we store as much as possible in an array and then reference the items in the array using metatables. This provides us with a much lower memory footprint and just one level of table lookup indirection (so I think the speed will not be noticeably different)
2020-10-06fix: Reduce memory leaks (#148)TJ DeVries
It is not 100% clear that we've gotten ALL the memory leaks, but it seems much much much better and doesn't look like it's going to die immediately or as often anymore :)
2020-10-04feat: builtin - lua package reloader (#132)Senghan Bright
2020-09-28fix: 126TJ DeVries
2020-09-26fix: use os sepTJ DeVries
2020-09-26Fix issue with trimming path separator '/'Rui Marques
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-23fix: small fixes from sunjon (#107)Senghan Bright
* Don't execute `command` if target buffer is already loaded in window. * Print node_text before entry.kind in ordinal string. * Add new builtin for listing and reloading Lua modules. * Revert "Add new builtin for listing and reloading Lua modules." This reverts commit 65d9d0294eae92b347b38b8dcf807fbcdd5783fe.
2020-09-21feat: Trim cwd from bufname if possible (#104)Rui Marques
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-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-11feat: make buffer work much betterTJ DeVries
2020-09-11feat: Add some more layout optionsTJ DeVries
2020-09-07Begin work on larger global config, to tailor defaultsTJ DeVries
2020-09-06added treesitter builtin (#31)Brian Ryall
* added treesitter builtim * fixed treesitter pr comments * fix the buffer previewer to keep lnum visable
2020-09-05feat: add buffer list (#30) TJ DeVries
NOTE: Buffer entry sometimes uses unstyled window, and I can't figure out why. * feat: add buffers * fixup
2020-09-04fix: Don't push past midnight. You'll make clason's stuff break :/TJ DeVries
2020-09-03feat: Major improvements in API. Particularly relating to entries.TJ DeVries