summaryrefslogtreecommitdiff
path: root/lua
AgeCommit message (Collapse)Author
2020-10-08fix: Respect cmdheight and laststatusTJ DeVries
2020-10-08feat: ALPHA Add layout_defaults and layout_config optionsTJ DeVries
2020-10-08fix: Remove useless prompt_titleTJ DeVries
2020-10-08fix: Scrolls past bottom lineTJ DeVries
2020-10-08fix: Don't consider 1 as a percentage for resolveTJ DeVries
Fixes: #155
2020-10-07fix: Changed git command to show all files inside project (#129)Norlock
2020-10-07Fix help preview and add highlighting to search result (#124)Senghan Bright
* fix: make sure that `$VIMRUNTIME/doc/tags` is in `tags` path * feat: highlight matched topic in helptags preview * fixup: Use previewer setup and teardown Co-authored-by: TJ DeVries <devries.timothyj@gmail.com>
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-05feat: Add `find` command support (#145)Nolan Prochnau
2020-10-04fix: Use width not results_width (#144)Dave Lage
2020-10-04fix: Results height configurable. Properly collapse on border = falserockerBOO
2020-10-04feat: builtin - lua package reloader (#132)Senghan Bright
2020-10-04fix: Pass --paging=always to bat (#142)Kamal Marhubi
This gets rid of a slightly annoying difference between files that fit in the preview pane and ones that don't: hitting the scroll-preview mappings would complain about a closed stream. Always using the pager ensures there's always a process at the other end, even if asking it to scroll doesn't actually do anything.
2020-10-02feat: Add highlight for selection caret (#135)Alvaro Muñoz
* Add highlight for selection caret * add default hl * remove highlight overlap
2020-10-01fix: set winhl as soon as possible to avoid color glitches (#136)Alvaro Muñoz
2020-09-30hotfix: Should stop referencing nil valuesTJ DeVries
Don't know why we were getting there, but maybe this will fix the problem?
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-29Fix if-clause after latest changesSimon Hauser
2020-09-28fix: 126TJ DeVries
2020-09-26fix: No longer lose highlights when moving through resultsTJ DeVries
2020-09-26fix: Fixed some off by one errors for ascending strategyTJ DeVries
2020-09-26feat: Add TelescopeMatching a new highlight for matches from sortersTJ DeVries
2020-09-26fix: use os sepTJ DeVries
2020-09-26Fix issue with trimming path separator '/'Rui Marques
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-24wip: Add some stuff for nvim_fileTJ DeVries
2020-09-24fix: more silenterTJ DeVries
2020-09-23fix: run filetypedetect on edit (#116)Mike Hartington
2020-09-23fix: refresh `bufnr` after executing edit command (#119)Senghan Bright
2020-09-23wip: Add some WIP ideas for reloaderTJ DeVries
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-23fix: adding a nil check to self.state when the window is too narrow for a ↵Fahad RIaz
preview (#110)
2020-09-23fix: Tighten up prompt on dropdown theme (#113)Dave Lage
2020-09-23fix: Tighten up prompt on dropdown themerockerBOO
2020-09-22fix: Use specific highlight types (#112)Dave Lage
2020-09-22fix: Use specific highlight typesrockerBOO
2020-09-22feat: Add TelescopeBorder Highlight (#111) Dave Lage
2020-09-22feat: Add TelescopeBorder HighlightrockerBOO
2020-09-22fix: Don't pass anything if word match is emptyTJ DeVries
2020-09-22fix: Don't log so much for users. Fix #91TJ DeVries
2020-09-22fix: Close existing pickers when starting new one. Fix #102TJ DeVries
2020-09-22test: Working on more memory leak trackingTJ DeVries
2020-09-22wip: Add ability to search for word match w/ rgTJ DeVries
2020-09-22fix: Perhaps fix #105TJ DeVries
2020-09-21feat: Disable job recording from plenary.TJ DeVries
This should reduce memory usage at least for large jobs. We won't save all the results into the job. I _think_ this will be half memory usage for many situations.
2020-09-21feat: Trim cwd from bufname if possible (#104)Rui Marques
2020-09-18fix: Add timeout param to all buf_requests and move to 10 secondsTJ DeVries