├── .gitignore ├── CHANGELOG ├── LICENSE ├── README.md ├── instantsearch.py └── tests.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e3rd/zim-plugin-instantsearch/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e3rd/zim-plugin-instantsearch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e3rd/zim-plugin-instantsearch/HEAD/README.md -------------------------------------------------------------------------------- /instantsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e3rd/zim-plugin-instantsearch/HEAD/instantsearch.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e3rd/zim-plugin-instantsearch/HEAD/tests.py --------------------------------------------------------------------------------