tangled
alpha
login
or
join now
robinwobin.dev
/
artio.nvim
3
fork
atom
minimal extui fuzzy finder for neovim
3
fork
atom
overview
issues
pulls
pipelines
fix(builtins): fallback to `find`
robinwobin.dev
5 days ago
ad99e16f
52c148ea
+2
-1
1 changed file
expand all
collapse all
unified
split
lua
artio
builtins.lua
+2
-1
lua/artio/builtins.lua
···
16
16
17
17
local builtins = {}
18
18
19
19
-
local findprg = "fd -H -p -a -t f --color=never"
19
19
+
local findprg = vim.fn.executable("fd") == 1 and "fd -H -p -a -t f --color=never --"
20
20
+
or "find . -type f -iregex '.*$*.*'"
20
21
21
22
---@class artio.picker.files.Props : artio.Picker.config
22
23
---@field findprg? string