gitextract_413bwcyb/ ├── .circleci/ │ └── config.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── Makefile ├── README.md ├── autoload/ │ ├── http.vim │ ├── vital/ │ │ ├── _vim_http/ │ │ │ └── Data/ │ │ │ └── Base64.vim │ │ ├── _vim_http.vim │ │ ├── vim_http.vim │ │ └── vim_http.vital │ └── vital.vim ├── docker-compose.yml ├── ftdetect/ │ └── http.vim ├── plugin/ │ └── http.vim ├── syntax/ │ └── http.vim └── test/ ├── .themisrc ├── integration.vim └── test-http-files/ ├── example_in_docs.md ├── get_body_params.expected.http ├── get_body_params.http ├── get_url_params.expected.http ├── get_url_params.http ├── get_with_multiple_headers.http ├── http_1_0.expected.http ├── http_1_0.http ├── http_1_1.expected.http ├── http_1_1.http ├── http_2.http ├── patch_json.expected.http ├── patch_json.http ├── post_incomplete.http ├── post_invalid_content_length.http ├── post_json.expected.http ├── post_json.http ├── redirect.expected.http ├── redirect.http ├── redirect_follow.expected.http ├── redirect_follow.http ├── simple_get.expected.http ├── simple_get.http └── simple_get_without_protocol.http