🐻 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.

doc: default sorter

robin 830e3518 b77c6560

+5
+5
lua/artio/init.lua
··· 109 109 end) 110 110 end 111 111 112 + --- the default sorter provides support for pattern matching. a `/.../` match 113 + --- at the start of the input will limit the fuzzy sorter to items matching the 114 + --- pattern. if you want to use `/.../` in your fuzzy matches, make sure to 115 + --- escape it by starting the input with an empty space (` /.../`). fuzzy 116 + --- sorting will be done on the input with the pattern removed. 112 117 ---@type artio.Picker.sorter 113 118 artio.sorter = artio.mergesorters("intersect", artio.pattern_sorter, function(lst, input) 114 119 input = string.gsub(input, "^/[^/]*/", "")