blob: 6515a524ab8ec2fc2076abaa7263c2de8082c88a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
if exists("b:current_syntax")
finish
endif
runtime! syntax/go.vim
" Character highlighting breaks highlighting when text blocks use apostrophes.
syntax clear goCharacter
" Some packages don't balance "`" quotes correctly, causing overflowing raw
" string highlighting.
syntax clear goRawString
|