feat: multi selection. Only integrates with send_selected_to_qflist (#551)
This will not yet work with select actions. More work is needed in that case. Co-authored-by: Simon Hauser <Simon-Hauser@outlook.de>
This commit is contained in:
@@ -99,4 +99,16 @@ scroller.bottom = function(sorting_strategy, max_results, num_results)
|
||||
return max_results - 1
|
||||
end
|
||||
|
||||
scroller.better = function(sorting_strategy)
|
||||
if sorting_strategy == 'ascending' then
|
||||
return -1
|
||||
else
|
||||
return 1
|
||||
end
|
||||
end
|
||||
|
||||
scroller.worse = function(sorting_strategy)
|
||||
return -(scroller.better(sorting_strategy))
|
||||
end
|
||||
|
||||
return scroller
|
||||
|
||||
Reference in New Issue
Block a user