diff --git a/README.md b/README.md index 43cc0af5..1a01c1a5 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ If the active buffer (prior to the finder being launched) is attached to an LSP ## Requirements - [telescope.nvim](https://github.com/nvim-telescope/telescope.nvim) (required) -- [sqlite.lua](https://github.com/tami5/sqlite.lua) (required) +- [sqlite.lua](https://github.com/kkharji/sqlite.lua) (required) - [nvim-web-devicons](https://github.com/kyazdani42/nvim-web-devicons) (optional) Timestamps and file records are stored in an [SQLite3](https://www.sqlite.org/index.html) database for persistence and speed. @@ -75,7 +75,7 @@ use { config = function() require"telescope".load_extension("frecency") end, - requires = {"tami5/sqlite.lua"} + requires = {"kkharji/sqlite.lua"} } ``` diff --git a/lua/frecency/picker.lua b/lua/frecency/picker.lua index bbf7e182..d8f95d62 100644 --- a/lua/frecency/picker.lua +++ b/lua/frecency/picker.lua @@ -202,7 +202,7 @@ end m.fd = function(opts) opts = opts or {} m.previous_buffer, m.cwd, m.opts = vim.fn.bufnr "%", vim.fn.expand(opts.cwd or vim.loop.cwd()), opts - -- TODO: should we update this to call frecency on other buffers? + -- TODO: should we update this every time it calls frecency on other buffers? m.fetch_lsp_workspaces(m.previous_buffer) m.update()