├── .busted ├── .clang-format ├── .clang-tidy ├── .github └── workflows │ ├── clang-format-check.yml │ ├── luarocks.yml │ ├── rockspec.template │ └── spec.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs └── fzy.md ├── fzy-scm-1.rockspec ├── src ├── bonus.h ├── fzy.lua ├── fzy_lua.lua ├── fzy_native.c ├── match.c └── match.h └── test ├── benchmark.lua ├── files.txt └── fzy_spec.lua /.busted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarn/fzy-lua/HEAD/.busted -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarn/fzy-lua/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarn/fzy-lua/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.github/workflows/clang-format-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarn/fzy-lua/HEAD/.github/workflows/clang-format-check.yml -------------------------------------------------------------------------------- /.github/workflows/luarocks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarn/fzy-lua/HEAD/.github/workflows/luarocks.yml -------------------------------------------------------------------------------- /.github/workflows/rockspec.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarn/fzy-lua/HEAD/.github/workflows/rockspec.template -------------------------------------------------------------------------------- /.github/workflows/spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarn/fzy-lua/HEAD/.github/workflows/spec.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.so 2 | *.o 3 | compile_flags.txt 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarn/fzy-lua/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarn/fzy-lua/HEAD/README.md -------------------------------------------------------------------------------- /docs/fzy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarn/fzy-lua/HEAD/docs/fzy.md -------------------------------------------------------------------------------- /fzy-scm-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarn/fzy-lua/HEAD/fzy-scm-1.rockspec -------------------------------------------------------------------------------- /src/bonus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarn/fzy-lua/HEAD/src/bonus.h -------------------------------------------------------------------------------- /src/fzy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarn/fzy-lua/HEAD/src/fzy.lua -------------------------------------------------------------------------------- /src/fzy_lua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarn/fzy-lua/HEAD/src/fzy_lua.lua -------------------------------------------------------------------------------- /src/fzy_native.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarn/fzy-lua/HEAD/src/fzy_native.c -------------------------------------------------------------------------------- /src/match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarn/fzy-lua/HEAD/src/match.c -------------------------------------------------------------------------------- /src/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarn/fzy-lua/HEAD/src/match.h -------------------------------------------------------------------------------- /test/benchmark.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarn/fzy-lua/HEAD/test/benchmark.lua -------------------------------------------------------------------------------- /test/files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarn/fzy-lua/HEAD/test/files.txt -------------------------------------------------------------------------------- /test/fzy_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swarn/fzy-lua/HEAD/test/fzy_spec.lua --------------------------------------------------------------------------------