mirror of
https://github.com/vim/vim.git
synced 2025-07-04 23:07:33 -04:00
20 lines
182 B
Plaintext
20 lines
182 B
Plaintext
# vim: set filetype=bitbake :
|
|
|
|
# START_INDENT
|
|
FOO = " \
|
|
bar \
|
|
baz \
|
|
qux \
|
|
"
|
|
|
|
do_configure() {
|
|
oe_conf
|
|
}
|
|
|
|
python do_task() {
|
|
def foo(x):
|
|
if y:
|
|
print(x)
|
|
}
|
|
# END_INDENT
|