You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Sometimes I would like to go all over all the telescopes results and perform a fix. Currently, i can do this by sending all telescope results to quick fix list. But this is too slow and requires extra action
Describe the solution you'd like
I would like to bind a key to "go to next result" and "go to previous result" in the last telescope picker (even if the last picker is closed currently)
Describe alternatives you've considered
I tried two alternatives:
Using quick fix list: This requires extra action and is too slow.
Using telescope.builtin.resume() and action_state.move_selection*() methods: This didn't work. For some reason selection doesn't move.
functionM.HandleTelescopeSearchUp()
localtelescope=require('telescope.builtin')
localaction_state=require"telescope.actions.state"telescope.resume()
localprompt_bufnr=vim.api.nvim_get_current_buf()
localcurrent_picker=action_state.get_current_picker(prompt_bufnr)
localactions=require"telescope.actions"actions.move_selection_next(current_picker.prompt_bufnr)
end
Additional context
Telescope is an awesome plugin. You all rock! This feature will speed me and other telescope lovers up. Would be much appreciated.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Sometimes I would like to go all over all the telescopes results and perform a fix. Currently, i can do this by sending all telescope results to quick fix list. But this is too slow and requires extra action
Describe the solution you'd like
I would like to bind a key to "go to next result" and "go to previous result" in the last telescope picker (even if the last picker is closed currently)
Describe alternatives you've considered
I tried two alternatives:
Additional context
Telescope is an awesome plugin. You all rock! This feature will speed me and other telescope lovers up. Would be much appreciated.
The text was updated successfully, but these errors were encountered: