From bbee246aaeb7fb689c7a2ae2bb911e34cabe7b00 Mon Sep 17 00:00:00 2001 From: Adam Stankiewicz Date: Wed, 14 Oct 2020 23:01:53 +0200 Subject: Add and fix tests from upstream vim --- syntax/sbt.vim | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'syntax/sbt.vim') diff --git a/syntax/sbt.vim b/syntax/sbt.vim index 80b360e6..2a280624 100644 --- a/syntax/sbt.vim +++ b/syntax/sbt.vim @@ -1,9 +1,9 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'sbt') == -1 " Vim syntax file -" Language: sbt -" Maintainer: Derek Wyatt -" Last Change: 2013 Oct 20 +" Language: sbt +" Maintainer: Steven Dobay +" Last Change: 2017.04.30 if exists("b:current_syntax") finish @@ -17,7 +17,6 @@ syn match sbtStringEscape "\\[nrfvb\\\"]" contained syn match sbtIdentitifer "^\S\+\ze\s*\(:=\|++=\|+=\|<<=\|<+=\)" syn match sbtBeginningSeq "^[Ss]eq\>" -syn match sbtAddPlugin "^addSbtPlugin\>" syn match sbtSpecial "\(:=\|++=\|+=\|<<=\|<+=\)" @@ -28,10 +27,10 @@ syn region sbtDocComment start="/\*\*" end="\*/" keepend hi link sbtString String hi link sbtIdentitifer Keyword hi link sbtBeginningSeq Keyword -hi link sbtAddPlugin Keyword hi link sbtSpecial Special hi link sbtComment Comment hi link sbtLineComment Comment hi link sbtDocComment Comment + endif -- cgit v1.2.3