feat: Add status, better debug, and some associated refactors
* [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
This commit is contained in:
8
scratch/how_long_does_time_take.lua
Normal file
8
scratch/how_long_does_time_take.lua
Normal file
@@ -0,0 +1,8 @@
|
||||
local start = vim.loop.hrtime()
|
||||
|
||||
local counts = 1e6
|
||||
for _ = 1, counts do
|
||||
local _ = vim.loop.hrtime()
|
||||
end
|
||||
|
||||
print(counts, ":", (vim.loop.hrtime() - start) / 1e9)
|
||||
9
scratch/new_index.lua
Normal file
9
scratch/new_index.lua
Normal file
@@ -0,0 +1,9 @@
|
||||
|
||||
local t = setmetatable({}, {
|
||||
__newindex = function(t, k, v)
|
||||
print(t, k, v)
|
||||
end
|
||||
})
|
||||
|
||||
-- table.insert(t, "hello")
|
||||
t[1] = "hello"
|
||||
36
scratch/old_perf_debug
Normal file
36
scratch/old_perf_debug
Normal file
@@ -0,0 +1,36 @@
|
||||
|
||||
|
||||
-- Until I have better profiling stuff, this will have to do.
|
||||
PERF = function(...) end
|
||||
PERF_DEBUG = PERF_DEBUG or nil
|
||||
START = nil
|
||||
|
||||
if PERF_DEBUG then
|
||||
PERF = function(...)
|
||||
local new_time = (vim.loop.hrtime() - START) / 1E9
|
||||
if select('#', ...) == 0 then
|
||||
vim.schedule(function()
|
||||
vim.api.nvim_buf_set_lines(PERF_DEBUG, -1, -1, false, { '' })
|
||||
end)
|
||||
return
|
||||
end
|
||||
|
||||
local to_insert = ''
|
||||
if START then
|
||||
to_insert = tostring(new_time) .. ' | '
|
||||
end
|
||||
|
||||
for _, v in ipairs({...}) do
|
||||
if type(v) == 'table' then
|
||||
to_insert = to_insert .. tostring(#v) .. ' | '
|
||||
else
|
||||
to_insert = to_insert .. tostring(v) .. ' | '
|
||||
end
|
||||
end
|
||||
|
||||
vim.schedule(function()
|
||||
vim.api.nvim_buf_set_lines(PERF_DEBUG, -1, -1, false, { to_insert })
|
||||
end)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -5,7 +5,7 @@ local telescope = require('telescope')
|
||||
-- When updating the table, we should call filter on those items
|
||||
-- and then only display ones that pass the filter
|
||||
local rg_finder = telescope.finders.new {
|
||||
fn_command = function(self, prompt)
|
||||
fn_command = function(_, prompt)
|
||||
return string.format('rg --vimgrep %s', prompt)
|
||||
end,
|
||||
|
||||
|
||||
@@ -8,3 +8,4 @@ sleep 1
|
||||
echo "husband"
|
||||
sleep 1
|
||||
echo "helper"
|
||||
|
||||
|
||||
17
scratch/temp_goals.txt
Normal file
17
scratch/temp_goals.txt
Normal file
@@ -0,0 +1,17 @@
|
||||
|
||||
Goal: Implement scrolling
|
||||
|
||||
So we want to start keeping track of more/all of the results
|
||||
|
||||
We still want them sorted, so when you scroll past,
|
||||
you still get the stuff you'd expect.
|
||||
|
||||
|
||||
Notes:
|
||||
|
||||
Probably want some X / Y count
|
||||
|
||||
|
||||
|
||||
Options
|
||||
|
||||
Reference in New Issue
Block a user