From c1fdf58a62368972dfa6b59356a1821e9616ff1d Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Wed, 8 Dec 2004 07:09:11 +0000 Subject: Vim syntax update: highlight the ending ':' on a 'def' line. --- contrib/vim/syntax/bb.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'contrib') diff --git a/contrib/vim/syntax/bb.vim b/contrib/vim/syntax/bb.vim index d74a6ab52..e39a90316 100644 --- a/contrib/vim/syntax/bb.vim +++ b/contrib/vim/syntax/bb.vim @@ -90,7 +90,7 @@ syn keyword bbDef def contained syn match bbDefCmd "^def" contains=bbDef skipwhite nextgroup=bbDefFunc syn match bbDefFunc "\w\+" contains=bbFunction contained skipwhite nextgroup=bbDefArgs syn region bbDefArgs matchgroup=bbDelimiter start="(" end=")" excludenl contained skipwhite keepend contains=bbIdentifier nextgroup=bbDefRegion -syn region bbDefRegion start=":$" end='^$' end='^\(\s\)\@!' contained contains=@python +syn region bbDefRegion matchgroup=bbDelimiter start=":$" end='^$' end='^\(\s\)\@!' contained contains=@python " BitBake statements -- cgit 1.2.3-korg