:ZkList { createdAfter = "3 days ago", tags = { "work" } }
" or directly via Telescope, but functionality is limited in VimL
:Telescope zk notes createdAfter=3\ days\ ago
Lua
require("zk").list(nil, { createdAfter = "3 days ago", tags = { "work" } })
-- or directly via Telescope
require('telescope').extensions.zk.notes({ createdAfter = "3 days ago", tags = { "work" } })
Also many documentation updates, both in the code and in the README.
The changes required for inline queries are actually quite minimal. The bulk of this PR is the added documentation and internal renaming of some things.
It's now possible to have inline queries like so:
VimL
Lua
Also many documentation updates, both in the code and in the README.