Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | " Vim syntax file |
| 2 | " Language: BitBake bb/bbclasses/inc |
| 3 | " Author: Chris Larson <kergoth@handhelds.org> |
| 4 | " Ricardo Salveti <rsalveti@rsalveti.net> |
| 5 | " Copyright: Copyright (C) 2004 Chris Larson <kergoth@handhelds.org> |
| 6 | " Copyright (C) 2008 Ricardo Salveti <rsalveti@rsalveti.net> |
| 7 | " |
| 8 | " This file is licensed under the MIT license, see COPYING.MIT in |
| 9 | " this source distribution for the terms. |
| 10 | " |
| 11 | " Syntax highlighting for bb, bbclasses and inc files. |
| 12 | " |
| 13 | " It's an entirely new type, just has specific syntax in shell and python code |
| 14 | |
Andrew Geissler | 475cb72 | 2020-07-10 16:00:51 -0500 | [diff] [blame] | 15 | if &compatible || v:version < 600 || exists("b:loaded_bitbake_plugin") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 16 | finish |
| 17 | endif |
| 18 | if exists("b:current_syntax") |
| 19 | finish |
| 20 | endif |
| 21 | |
| 22 | syn include @python syntax/python.vim |
| 23 | if exists("b:current_syntax") |
| 24 | unlet b:current_syntax |
| 25 | endif |
| 26 | |
| 27 | " BitBake syntax |
| 28 | |
| 29 | " Matching case |
| 30 | syn case match |
| 31 | |
| 32 | " Indicates the error when nothing is matched |
| 33 | syn match bbUnmatched "." |
| 34 | |
| 35 | " Comments |
| 36 | syn cluster bbCommentGroup contains=bbTodo,@Spell |
| 37 | syn keyword bbTodo COMBAK FIXME TODO XXX contained |
| 38 | syn match bbComment "#.*$" contains=@bbCommentGroup |
| 39 | |
| 40 | " String helpers |
| 41 | syn match bbQuote +['"]+ contained |
| 42 | syn match bbDelimiter "[(){}=]" contained |
| 43 | syn match bbArrayBrackets "[\[\]]" contained |
| 44 | |
| 45 | " BitBake strings |
| 46 | syn match bbContinue "\\$" |
| 47 | syn region bbString matchgroup=bbQuote start=+"+ skip=+\\$+ end=+"+ contained contains=bbTodo,bbContinue,bbVarDeref,bbVarPyValue,@Spell |
| 48 | syn region bbString matchgroup=bbQuote start=+'+ skip=+\\$+ end=+'+ contained contains=bbTodo,bbContinue,bbVarDeref,bbVarPyValue,@Spell |
| 49 | |
| 50 | " Vars definition |
| 51 | syn match bbExport "^export" nextgroup=bbIdentifier skipwhite |
| 52 | syn keyword bbExportFlag export contained nextgroup=bbIdentifier skipwhite |
| 53 | syn match bbIdentifier "[a-zA-Z0-9\-_\.\/\+]\+" display contained |
| 54 | syn match bbVarDeref "${[a-zA-Z0-9\-_\.\/\+]\+}" contained |
| 55 | syn match bbVarEq "\(:=\|+=\|=+\|\.=\|=\.\|?=\|??=\|=\)" contained nextgroup=bbVarValue |
| 56 | syn match bbVarDef "^\(export\s*\)\?\([a-zA-Z0-9\-_\.\/\+]\+\(_[${}a-zA-Z0-9\-_\.\/\+]\+\)\?\)\s*\(:=\|+=\|=+\|\.=\|=\.\|?=\|??=\|=\)\@=" contains=bbExportFlag,bbIdentifier,bbVarDeref nextgroup=bbVarEq |
| 57 | syn match bbVarValue ".*$" contained contains=bbString,bbVarDeref,bbVarPyValue |
| 58 | syn region bbVarPyValue start=+${@+ skip=+\\$+ end=+}+ contained contains=@python |
| 59 | |
| 60 | " Vars metadata flags |
Andrew Geissler | 475cb72 | 2020-07-10 16:00:51 -0500 | [diff] [blame] | 61 | syn match bbVarFlagDef "^\([a-zA-Z0-9\-_\.]\+\)\(\[[a-zA-Z0-9\-_\.+]\+\]\)\@=" contains=bbIdentifier nextgroup=bbVarFlagFlag |
| 62 | syn region bbVarFlagFlag matchgroup=bbArrayBrackets start="\[" end="\]\s*\(:=\|=\|.=\|=.|+=\|=+\|?=\)\@=" contained contains=bbIdentifier nextgroup=bbVarEq |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 63 | |
| 64 | " Includes and requires |
| 65 | syn keyword bbInclude inherit include require contained |
| 66 | syn match bbIncludeRest ".*$" contained contains=bbString,bbVarDeref |
| 67 | syn match bbIncludeLine "^\(inherit\|include\|require\)\s\+" contains=bbInclude nextgroup=bbIncludeRest |
| 68 | |
| 69 | " Add taks and similar |
Andrew Geissler | 475cb72 | 2020-07-10 16:00:51 -0500 | [diff] [blame] | 70 | syn keyword bbStatement addtask deltask addhandler after before EXPORT_FUNCTIONS contained |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 71 | syn match bbStatementRest ".*$" skipwhite contained contains=bbStatement |
Andrew Geissler | 475cb72 | 2020-07-10 16:00:51 -0500 | [diff] [blame] | 72 | syn match bbStatementLine "^\(addtask\|deltask\|addhandler\|after\|before\|EXPORT_FUNCTIONS\)\s\+" contains=bbStatement nextgroup=bbStatementRest |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 73 | |
| 74 | " OE Important Functions |
| 75 | syn keyword bbOEFunctions do_fetch do_unpack do_patch do_configure do_compile do_stage do_install do_package contained |
| 76 | |
| 77 | " Generic Functions |
Andrew Geissler | 475cb72 | 2020-07-10 16:00:51 -0500 | [diff] [blame] | 78 | syn match bbFunction "\h[0-9A-Za-z_\-\.]*" display contained contains=bbOEFunctions |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 79 | |
| 80 | " BitBake shell metadata |
| 81 | syn include @shell syntax/sh.vim |
| 82 | if exists("b:current_syntax") |
| 83 | unlet b:current_syntax |
| 84 | endif |
| 85 | syn keyword bbShFakeRootFlag fakeroot contained |
Andrew Geissler | 475cb72 | 2020-07-10 16:00:51 -0500 | [diff] [blame] | 86 | syn match bbShFuncDef "^\(fakeroot\s*\)\?\([\.0-9A-Za-z_${}\-\.]\+\)\(python\)\@<!\(\s*()\s*\)\({\)\@=" contains=bbShFakeRootFlag,bbFunction,bbVarDeref,bbDelimiter nextgroup=bbShFuncRegion skipwhite |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 87 | syn region bbShFuncRegion matchgroup=bbDelimiter start="{\s*$" end="^}\s*$" contained contains=@shell |
| 88 | |
| 89 | " Python value inside shell functions |
| 90 | syn region shDeref start=+${@+ skip=+\\$+ excludenl end=+}+ contained contains=@python |
| 91 | |
| 92 | " BitBake python metadata |
| 93 | syn keyword bbPyFlag python contained |
Andrew Geissler | 475cb72 | 2020-07-10 16:00:51 -0500 | [diff] [blame] | 94 | syn match bbPyFuncDef "^\(fakeroot\s*\)\?\(python\)\(\s\+[0-9A-Za-z_${}\-\.]\+\)\?\(\s*()\s*\)\({\)\@=" contains=bbShFakeRootFlag,bbPyFlag,bbFunction,bbVarDeref,bbDelimiter nextgroup=bbPyFuncRegion skipwhite |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 95 | syn region bbPyFuncRegion matchgroup=bbDelimiter start="{\s*$" end="^}\s*$" contained contains=@python |
| 96 | |
| 97 | " BitBake 'def'd python functions |
| 98 | syn keyword bbPyDef def contained |
| 99 | syn region bbPyDefRegion start='^\(def\s\+\)\([0-9A-Za-z_-]\+\)\(\s*(.*)\s*\):\s*$' end='^\(\s\|$\)\@!' contains=@python |
| 100 | |
| 101 | " Highlighting Definitions |
| 102 | hi def link bbUnmatched Error |
| 103 | hi def link bbInclude Include |
| 104 | hi def link bbTodo Todo |
| 105 | hi def link bbComment Comment |
| 106 | hi def link bbQuote String |
| 107 | hi def link bbString String |
| 108 | hi def link bbDelimiter Keyword |
| 109 | hi def link bbArrayBrackets Statement |
| 110 | hi def link bbContinue Special |
| 111 | hi def link bbExport Type |
| 112 | hi def link bbExportFlag Type |
| 113 | hi def link bbIdentifier Identifier |
| 114 | hi def link bbVarDeref PreProc |
| 115 | hi def link bbVarDef Identifier |
| 116 | hi def link bbVarValue String |
| 117 | hi def link bbShFakeRootFlag Type |
| 118 | hi def link bbFunction Function |
| 119 | hi def link bbPyFlag Type |
| 120 | hi def link bbPyDef Statement |
| 121 | hi def link bbStatement Statement |
| 122 | hi def link bbStatementRest Identifier |
| 123 | hi def link bbOEFunctions Special |
| 124 | hi def link bbVarPyValue PreProc |
| 125 | |
| 126 | let b:current_syntax = "bb" |