Skip to content

Commit 2f20cc5

Browse files
committed
highlight include FOO_H
fixes #43
1 parent d3d3800 commit 2f20cc5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

syntax/c.vim

+2-1
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,8 @@ if !exists("c_no_if0")
383383
endif
384384
syn region cIncluded display contained start=+"+ skip=+\\\\\|\\"+ end=+"+
385385
syn match cIncluded display contained "<[^>]*>"
386-
syn match cInclude display "^\s*\zs\(%:\|#\)\s*include\>\s*["<]" contains=cIncluded
386+
syn match cIncluded display contained "[a-zA-Z_][a-zA-Z0-9_]*"
387+
syn match cInclude display "^\s*\zs\(%:\|#\)\s*include\>\s*["<a-zA-Z]" contains=cIncluded
387388
"syn match cLineSkip "\\$"
388389
syn cluster cPreProcGroup contains=cPreCondit,cIncluded,cInclude,cDefine,cErrInParen,cErrInBracket,cUserLabel,cSpecial,cOctalZero,cCppOutWrapper,cCppInWrapper,@cCppOutInGroup,cFormat,cNumber,cFloat,cOctal,cOctalError,cNumbersCom,cString,cCommentSkip,cCommentString,cComment2String,@cCommentGroup,cCommentStartError,cParen,cBracket,cMulti,cBadBlock
389390
syn region cDefine start="^\s*\zs\(%:\|#\)\s*\(define\|undef\)\>" skip="\\$" end="$" keepend contains=ALLBUT,@cPreProcGroup,@Spell

0 commit comments

Comments
 (0)