mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-13 14:03:50 -05:00
26 lines
648 B
VimL
26 lines
648 B
VimL
let files = filter(globpath(&rtp, 'syntax/bzl.vim', 1, 1), { _, v -> v !~ "vim-polyglot" && v !~ $VIMRUNTIME && v !~ "after" })
|
|
if len(files) > 0
|
|
exec 'source ' . files[0]
|
|
finish
|
|
endif
|
|
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'bzl') == -1
|
|
|
|
" Vim syntax file
|
|
" Language: Bazel (http://bazel.io)
|
|
" Maintainer: David Barnett (https://github.com/google/vim-ft-bzl)
|
|
" Last Change: 2015 Aug 11
|
|
|
|
if exists('b:current_syntax')
|
|
finish
|
|
endif
|
|
|
|
|
|
runtime! syntax/python.vim
|
|
|
|
let b:current_syntax = 'bzl'
|
|
|
|
syn region bzlRule start='^\w\+($' end='^)\n*' transparent fold
|
|
syn region bzlList start='\[' end='\]' transparent fold
|
|
|
|
endif
|