telescope-frecency.nvim/lua/frecency
JINNOUCHI Yasushi 3c5b61cda1
feat: add JSON output for query() (#262)
This makes it be enable to do this.

```bash
$ nvim --headless +'=require("frecency").query { limit = 3, json = true }' +q | jq .
[
  "/path/to/most/opened/file",
  "/path/to/second/file",
  "/path/to/third/file"
]
```

* chore: add `debug_timer` option to log in timer

* fix: wait synchronously for DB not in coroutine

* feat: add `json` option to dump JSON for DB
2024-09-08 16:55:44 +09:00
..
database feat: add JSON output for query() (#262) 2024-09-08 16:55:44 +09:00
tests feat: use lazy.nvim to measure times if usable (#249) 2024-08-25 20:31:15 +09:00
config.lua feat: add JSON output for query() (#262) 2024-09-08 16:55:44 +09:00
database.lua feat: separate bootstrap logic to launch faster (#250) 2024-08-31 15:02:15 +09:00
entry_maker.lua feat: make query() faster and more lazier (#241) 2024-08-25 19:28:52 +09:00
file_lock.lua feat: make query() faster and more lazier (#241) 2024-08-25 19:28:52 +09:00
finder.lua feat: use lazy.nvim to measure times if usable (#249) 2024-08-25 20:31:15 +09:00
fs.lua feat: make query() faster and more lazier (#241) 2024-08-25 19:28:52 +09:00
fuzzy_sorter.lua feat: make query() faster and more lazier (#241) 2024-08-25 19:28:52 +09:00
init.lua feat!: validate DB before execution only if needed (#257) 2024-09-05 23:12:25 +09:00
klass.lua feat: add JSON output for query() (#262) 2024-09-08 16:55:44 +09:00
lazy_require.lua feat: make query() faster and more lazier (#241) 2024-08-25 19:28:52 +09:00
log.lua feat: make query() faster and more lazier (#241) 2024-08-25 19:28:52 +09:00
os_util.lua feat: make query() faster and more lazier (#241) 2024-08-25 19:28:52 +09:00
picker.lua feat: make query() faster and more lazier (#241) 2024-08-25 19:28:52 +09:00
recency.lua feat: make query() faster and more lazier (#241) 2024-08-25 19:28:52 +09:00
state.lua Simplify code with using frecency.config (#189) 2024-03-25 18:45:45 +09:00
substr_sorter.lua feat: make query() faster and more lazier (#241) 2024-08-25 19:28:52 +09:00
timer.lua feat: add JSON output for query() (#262) 2024-09-08 16:55:44 +09:00
types.lua feat: make query() faster and more lazier (#241) 2024-08-25 19:28:52 +09:00
wait.lua feat: separate bootstrap logic to launch faster (#250) 2024-08-31 15:02:15 +09:00
watcher.lua feat: make query() faster and more lazier (#241) 2024-08-25 19:28:52 +09:00
web_devicons.lua fix: icon colors (#253) 2024-08-28 14:25:59 +09:00