scratch: add thoughts

This commit is contained in:
TJ DeVries
2020-09-11 14:39:20 -04:00
parent d96d89711c
commit 3316dcd7a3
3 changed files with 58 additions and 0 deletions

33
scratch/piped_to_fzf.lua Normal file
View File

@@ -0,0 +1,33 @@
RELOAD('telescope')
RELOAD('plenary')
local finders = require('telescope.finders')
local make_entry = require('telescope.make_entry')
local pickers = require('telescope.pickers')
local sorters = require('telescope.sorters')
local Job = require('plenary.job')
pickers.new {
prompt = "Piped FZF",
finder = finders._new {
fn_command = function(_, prompt)
return {
command = 'fzf',
args = {'--no-sort', '--filter', prompt or ''},
writer = Job:new {
command = 'rg',
args = {'--files'},
cwd = '/home/tj/',
enable_handlers = false,
},
}
end,
entry_maker = make_entry.gen_from_file(),
sorter = sorters.get_fuzzy_file(),
},
}:find()