mirror of
https://github.com/vim/vim
synced 2025-05-02 14:27:44 +02:00
Related to #15974 and #16870. closes: #17116 Signed-off-by: Aliaksei Budavei <0x000c70@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
21 lines
275 B
Text
21 lines
275 B
Text
# vim: set filetype=bitbake :
|
|
|
|
# START_INDENT
|
|
# INDENT_EXE let g:pyindent_searchpair_timeout = 64
|
|
# INDENT_EXE runtime autoload/python.vim
|
|
FOO = " \
|
|
bar \
|
|
baz \
|
|
qux \
|
|
"
|
|
|
|
do_configure() {
|
|
oe_conf
|
|
}
|
|
|
|
python do_task() {
|
|
def foo(x):
|
|
if y:
|
|
print(x)
|
|
}
|
|
# END_INDENT
|