🐻 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): fallback to `find`

robin ad99e16f 52c148ea

+2 -1
+2 -1
lua/artio/builtins.lua
··· 16 16 17 17 local builtins = {} 18 18 19 - local findprg = "fd -H -p -a -t f --color=never" 19 + local findprg = vim.fn.executable("fd") == 1 and "fd -H -p -a -t f --color=never --" 20 + or "find . -type f -iregex '.*$*.*'" 20 21 21 22 ---@class artio.picker.files.Props : artio.Picker.config 22 23 ---@field findprg? string