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
doc: show `findprg` override example
robinwobin.dev
2 weeks ago
e6c544fe
f39e3fb1
+13
1 changed file
expand all
collapse all
unified
split
README.md
+13
README.md
···
88
88
vim.keymap.set("n", "<leader>f/", "<Plug>(artio-buffergrep)")
89
89
vim.keymap.set("n", "<leader>fo", "<Plug>(artio-oldfiles)")
90
90
```
91
91
+
92
92
+
### customize builtin pickers
93
93
+
94
94
+
you're able to override the command used to find files:
95
95
+
96
96
+
```lua
97
97
+
-- ignore hidden files
98
98
+
vim.keymap.set("n", "<leader>ff", function()
99
99
+
require('artio.builtins').files({
100
100
+
findprg = [[ find . -type f -iregex '.*$*.*' -not -path '*/[@.]*' ]],
101
101
+
})
102
102
+
end)
103
103
+
```