├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── addon-info.json ├── doc └── ft-bzl.txt ├── ftdetect └── bzl.vim ├── ftplugin └── bzl.vim ├── indent └── bzl.vim ├── syntax └── bzl.vim └── vroom ├── fold.vroom ├── main.vroom └── setupvroom.vim /.gitignore: -------------------------------------------------------------------------------- 1 | /doc/tags 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/vim-ft-bzl/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/vim-ft-bzl/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/vim-ft-bzl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/vim-ft-bzl/HEAD/README.md -------------------------------------------------------------------------------- /addon-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/vim-ft-bzl/HEAD/addon-info.json -------------------------------------------------------------------------------- /doc/ft-bzl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/vim-ft-bzl/HEAD/doc/ft-bzl.txt -------------------------------------------------------------------------------- /ftdetect/bzl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/vim-ft-bzl/HEAD/ftdetect/bzl.vim -------------------------------------------------------------------------------- /ftplugin/bzl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/vim-ft-bzl/HEAD/ftplugin/bzl.vim -------------------------------------------------------------------------------- /indent/bzl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/vim-ft-bzl/HEAD/indent/bzl.vim -------------------------------------------------------------------------------- /syntax/bzl.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/vim-ft-bzl/HEAD/syntax/bzl.vim -------------------------------------------------------------------------------- /vroom/fold.vroom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/vim-ft-bzl/HEAD/vroom/fold.vroom -------------------------------------------------------------------------------- /vroom/main.vroom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/vim-ft-bzl/HEAD/vroom/main.vroom -------------------------------------------------------------------------------- /vroom/setupvroom.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelbuild/vim-ft-bzl/HEAD/vroom/setupvroom.vim --------------------------------------------------------------------------------