https://github.com/leafoftree/vim-test
Test files for vim filetype plugins
https://github.com/leafoftree/vim-test
Last synced: about 1 month ago
JSON representation
Test files for vim filetype plugins
- Host: GitHub
- URL: https://github.com/leafoftree/vim-test
- Owner: leafOfTree
- License: apache-2.0
- Created: 2015-07-23T02:02:38.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-02-02T03:12:59.000Z (about 3 years ago)
- Last Synced: 2025-04-08T04:30:18.958Z (11 months ago)
- Language: Vue
- Homepage:
- Size: 399 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Test [](https://travis-ci.com/leafOfTree/test)
Test filetype plugins, like
- [vim-vue-plugin](https://github.com/leafOfTree/vim-vue-plugin)
- [vim-svelte-plugin](https://github.com/leafOfTree/vim-svelte-plugin)
## Usage
bash start.sh []
With fold structrue like
- test/
|
- vim-vue-plugin/
providing `test/example.vue` which has correct indentation,
### Run all tests
run
bash test/start.sh vue vim-vue-plugin
to check if there are indentation changes or error messages.
### Run a single test case
bash test/start.sh vue vim-vue-plugin basic
### Configure
The `.travis.yml` under `vim-vue-plugin` is
```yaml
install:
- git clone --depth=1 https://github.com/leafOfTree/test ../test
script:
- bash ../test/start.sh vue vim-vue-plugin
```