view runtime/syntax/bzl.vim @ 13373:0802633a0b2d v8.0.1560

patch 8.0.1560: build failure without GUI on MS-Windows commit https://github.com/vim/vim/commit/3767b61ad99fe6ff2cace2dccb5d35331786735f Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 3 19:51:58 2018 +0100 patch 8.0.1560: build failure without GUI on MS-Windows Problem: Build failure without GUI on MS-Windows. Solution: Adjust #ifdef for vcol2col().
author Christian Brabandt <cb@256bit.org>
date Sat, 03 Mar 2018 20:00:07 +0100
parents 30042ddff503
children
line wrap: on
line source

" 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