Mercurial > vim
view runtime/syntax/bzl.vim @ 22938:760526e5cd29 v8.2.2016
patch 8.2.2016: swap file test is a little flaky
Commit: https://github.com/vim/vim/commit/c6ca9f3a29bfd6f5269749036f79f63ce6289692
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Nov 19 18:57:23 2020 +0100
patch 8.2.2016: swap file test is a little flaky
Problem: Swap file test is a little flaky.
Solution: Don't set a byte to a fixed value, increment it.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 19 Nov 2020 19: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