├── .gitignore ├── LICENSE ├── README.md ├── autoload └── jsonpath.vim ├── doc └── jsonpath.txt ├── jsonpath.py ├── plugin └── jsonpath.vim ├── tests.sh └── tests ├── array.json ├── json-in-string.json ├── minified.json ├── multiple-documents.json ├── object.json ├── restcountries.json └── unicode.json /.gitignore: -------------------------------------------------------------------------------- 1 | doc/tags 2 | __pycache__/ 3 | *.pyc 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogelbrod/vim-jsonpath/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogelbrod/vim-jsonpath/HEAD/README.md -------------------------------------------------------------------------------- /autoload/jsonpath.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogelbrod/vim-jsonpath/HEAD/autoload/jsonpath.vim -------------------------------------------------------------------------------- /doc/jsonpath.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogelbrod/vim-jsonpath/HEAD/doc/jsonpath.txt -------------------------------------------------------------------------------- /jsonpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogelbrod/vim-jsonpath/HEAD/jsonpath.py -------------------------------------------------------------------------------- /plugin/jsonpath.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogelbrod/vim-jsonpath/HEAD/plugin/jsonpath.vim -------------------------------------------------------------------------------- /tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogelbrod/vim-jsonpath/HEAD/tests.sh -------------------------------------------------------------------------------- /tests/array.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogelbrod/vim-jsonpath/HEAD/tests/array.json -------------------------------------------------------------------------------- /tests/json-in-string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogelbrod/vim-jsonpath/HEAD/tests/json-in-string.json -------------------------------------------------------------------------------- /tests/minified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogelbrod/vim-jsonpath/HEAD/tests/minified.json -------------------------------------------------------------------------------- /tests/multiple-documents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogelbrod/vim-jsonpath/HEAD/tests/multiple-documents.json -------------------------------------------------------------------------------- /tests/object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogelbrod/vim-jsonpath/HEAD/tests/object.json -------------------------------------------------------------------------------- /tests/restcountries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogelbrod/vim-jsonpath/HEAD/tests/restcountries.json -------------------------------------------------------------------------------- /tests/unicode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mogelbrod/vim-jsonpath/HEAD/tests/unicode.json --------------------------------------------------------------------------------