-
-
Notifications
You must be signed in to change notification settings - Fork 837
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow "scrolling" through results in the list. #42
Comments
You know, until now I didn't realize that you couldn't scroll through the results list... (I think I'd rather do lazy loading, i.e., if you scroll to the top-most result, retrigger the search with the current typed pattern and cut off at |
Yes, it's a good idea. It might require a bit of time to think about. I have implemented I think maybe first step would be:
|
I'm starting to use loclist to get tags (from markdown into location) and use it as an outline. This feature is really useful |
@tjdevries Where can I find |
Until this feature is built, are the full results accessible programmatically? Specifically, I'd like to be able to trigger live_grep and send all results (including the ones outside the visible range) to the quickfix list. |
@apazzolini you can do exactly that with telescope.nvim/lua/telescope/mappings.lua Line 29 in f92b9b1
|
Oh, I didn't realize that sent invisible results as well. Thanks! |
You're welcome. I remembered that I actually use |
yes, this feature is highly wanted, i leave a comment in order to be notified at the first time. |
+1 |
@tjdevries add a bounty to it? :) |
Haha, well it's on the todo list. I completed step one which was asyncify more of the Ui. This is one of the next steps. |
I don't know what the easiest way to set up bounty or fundraiser is |
This is now working up to 1000 results with #1232 |
Right now you are limited to the results in the list.
If I am on vertical I am only showing 8 results by default.
I sometimes use the fuzzy to give me a short list to browse through.
Solutions
Allow us to go up on the list beyond the presented list.
I think limiting the the total results would be fine. 100 total results available for instance. Unless we want to encourage fuzzy browsing which then no limit (high limit) might be good.
The text was updated successfully, but these errors were encountered: