🐻 minimal ui2 fuzzy finder for Neovim codeberg.org/comfysage/artio.nvim
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(builtins): use `getcwd(0)` for grep

fix: https://github.com/comfysage/artio.nvim/issues/10

robin ceb946ff efa68dec

+3 -1
+3 -1
lua/artio/builtins.lua
··· 90 90 props.grepprg = props.grepprg or vim.o.grepprg 91 91 92 92 local ext = require("vim._extui.shared") 93 - local grepcmd = utils.make_cmd(props.grepprg) 93 + local grepcmd = utils.make_cmd(props.grepprg, { 94 + cwd = vim.fn.getcwd(0), 95 + }) 94 96 95 97 return artio.pick(extend({ 96 98 items = {},