minimal extui fuzzy finder for neovim

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

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

+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 = {},