kergoth / vim-bitbake

Vim files for the BitBake tool
MIT License
62 stars 36 forks source link

Match python task append/prepend syntax #33

Open wesQ3 opened 1 year ago

wesQ3 commented 1 year ago

Currently an error label is displayed on python functions with :append/prepend. See this example from the user manual:

image

example.bb ```bitbake python some_python_function () { d.setVar("TEXT", "Hello World") print d.getVar("TEXT") } python do_foo:prepend() { bb.plain("first") } python do_foo() { bb.plain("second") } python do_foo:append() { bb.plain("third") } ```