Update tests location

This commit is contained in:
Adam Stankiewicz
2020-09-22 21:47:21 +02:00
parent 6f0c50457f
commit 378dcb3878
7 changed files with 253 additions and 7 deletions

View File

@@ -97,6 +97,7 @@ endif
syn match uLineComment "---*\([^-!#$%&\*\+./<=>\?@\\^|~].*\)\?$"
syn region uBlockComment start="{-" end="-}" contains=uBlockComment
syn region uPragma start="{-#" end="#-}"
syn region uBelowFold start="^---" skip="." end="." contains=uBelowFold
" Docs
syn region uDocBlock start="\[:" end=":]" contains=uLink,uDocDirective
@@ -134,6 +135,7 @@ if version >= 508 || !exists("did_u_syntax_inits")
HiLink uBlockComment uComment
HiLink uLineComment uComment
HiLink uComment Comment
HiLink uBelowFold Comment
HiLink uDocBlock String
HiLink uLink uType
HiLink uDocDirective uImport
@@ -148,6 +150,7 @@ if version >= 508 || !exists("did_u_syntax_inits")
delcommand HiLink
endif
let b:current_syntax = "unison"
" Options for vi: ts=8 sw=2 sts=2 nowrap noexpandtab ft=vim