minimal extui fuzzy finder for neovim

doc: default sorter

+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, "^/[^/]*/", "")