Skip to content

Commit

Permalink
Update url for sqlite dependency (#64)
Browse files Browse the repository at this point in the history
The old repository on github redirects to this one.
  • Loading branch information
lucc authored and delphinus committed Apr 9, 2023
1 parent 384f1d0 commit c56bb82
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -75,7 +75,7 @@ use {
config = function()
require"telescope".load_extension("frecency")
end,
requires = {"tami5/sqlite.lua"}
requires = {"kkharji/sqlite.lua"}
}
```

Expand Down
2 changes: 1 addition & 1 deletion lua/frecency/picker.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit c56bb82

Please sign in to comment.