diff options
author | Chris Laplante via bitbake-devel <bitbake-devel@lists.openembedded.org> | 2019-10-17 12:36:51 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-11-07 19:42:51 +0000 |
commit | 3bf0f446649c3dd413029bc777906ea56448290e (patch) | |
tree | 682d90fa1d69cd861a195d03b92e0ac766467508 | |
parent | b775e1d82cfbf685436e0f7581480321fdf50c2d (diff) | |
download | poky-3bf0f446649c3dd413029bc777906ea56448290e.tar.gz |
bitbake: contrib/vim: don't redeclare indenter
Signed-off-by: Chris Laplante <chris.laplante@agilent.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/bitbake/contrib/vim/indent/bitbake.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bitbake/bitbake/contrib/vim/indent/bitbake.vim b/bitbake/bitbake/contrib/vim/indent/bitbake.vim index d8bffe0620..fc428a2074 100644 --- a/bitbake/bitbake/contrib/vim/indent/bitbake.vim +++ b/bitbake/bitbake/contrib/vim/indent/bitbake.vim | |||
@@ -2,6 +2,10 @@ if exists("b:did_indent") | |||
2 | finish | 2 | finish |
3 | endif | 3 | endif |
4 | 4 | ||
5 | if exists("*BitbakeIndent") | ||
6 | finish | ||
7 | endif | ||
8 | |||
5 | runtime! indent/sh.vim | 9 | runtime! indent/sh.vim |
6 | unlet b:did_indent | 10 | unlet b:did_indent |
7 | 11 | ||