summaryrefslogtreecommitdiff
path: root/lua/telescope/entry_manager.lua
diff options
context:
space:
mode:
authorTJ DeVries <devries.timothyj@gmail.com>2021-10-08 07:56:01 -0700
committerGitHub <noreply@github.com>2021-10-08 10:56:01 -0400
commitdea927d0eb22255632dd82d2efff1a68d621c871 (patch)
treee7dbec3210c551e664fc0b6c85ebbe901c014014 /lua/telescope/entry_manager.lua
parentec6c13fc092fe8447df77e35013df907a6f3761e (diff)
feat: Add scrolling through results (#1232)
* some scrollin * [WIP]: Fri 10 Sep 2021 02:24:20 PM EDT * ok, I think scrolling works * change to 1000 for now, dont need to scroll that far :)
Diffstat (limited to 'lua/telescope/entry_manager.lua')
-rw-r--r--lua/telescope/entry_manager.lua21
1 files changed, 0 insertions, 21 deletions
diff --git a/lua/telescope/entry_manager.lua b/lua/telescope/entry_manager.lua
index 5055171..1e94c80 100644
--- a/lua/telescope/entry_manager.lua
+++ b/lua/telescope/entry_manager.lua
@@ -2,27 +2,6 @@ local log = require "telescope.log"
local LinkedList = require "telescope.algos.linked_list"
---[[
-
-OK, new idea.
-We can do linked list here.
-To convert at the end to quickfix, just run the list.
-...
-
-start node
-end node
-
-if past loop of must have scores,
- then we can just add to end node and shift end node to current node.
- etc.
-
-
- always inserts a row, because we clear everything before?
-
- can also optimize by keeping worst acceptable score around.
-
---]]
-
local EntryManager = {}
EntryManager.__index = EntryManager