mirror of
https://github.com/kristoferssolo/telescope-frecency.nvim.git
synced 2025-10-21 20:10:38 +00:00
remove debug messages
This commit is contained in:
parent
4652f6c325
commit
815ea52886
@ -69,7 +69,6 @@ local function validate_db()
|
|||||||
if confirmed then
|
if confirmed then
|
||||||
for _, entry in pairs(pending_remove) do
|
for _, entry in pairs(pending_remove) do
|
||||||
-- remove entries from file and timestamp tables
|
-- remove entries from file and timestamp tables
|
||||||
print("removing entry: " .. entry.path .. "[" .. entry.id .."]")
|
|
||||||
sql_wrapper:do_transaction(queries.file_delete_entry , {where = {id = entry.id }})
|
sql_wrapper:do_transaction(queries.file_delete_entry , {where = {id = entry.id }})
|
||||||
sql_wrapper:do_transaction(queries.timestamp_delete_entry, {where = {file_id = entry.id}})
|
sql_wrapper:do_transaction(queries.timestamp_delete_entry, {where = {file_id = entry.id}})
|
||||||
end
|
end
|
||||||
@ -91,8 +90,6 @@ local function init(config_ignore_patterns)
|
|||||||
end
|
end
|
||||||
|
|
||||||
ignore_patterns = config_ignore_patterns or default_ignore_patterns
|
ignore_patterns = config_ignore_patterns or default_ignore_patterns
|
||||||
print(vim.inspect(ignore_patterns))
|
|
||||||
|
|
||||||
|
|
||||||
-- setup autocommands
|
-- setup autocommands
|
||||||
vim.api.nvim_command("augroup TelescopeFrecency")
|
vim.api.nvim_command("augroup TelescopeFrecency")
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user