mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 12:59:02 +02:00

(Bitbake rev: 24fb1f2fee449589b0c5468cbdebe9a6ffaac932) Signed-off-by: Chris Laplante <mostthingsweb@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 lines
324 B
VimL
14 lines
324 B
VimL
" Only do this when not done yet for this buffer
|
|
if exists("b:did_ftplugin")
|
|
finish
|
|
endif
|
|
|
|
" Don't load another plugin for this buffer
|
|
let b:did_ftplugin = 1
|
|
|
|
let b:undo_ftplugin = "setl cms< sts< sw< et< sua<"
|
|
|
|
setlocal commentstring=#\ %s
|
|
setlocal softtabstop=4 shiftwidth=4 expandtab
|
|
setlocal suffixesadd+=.bb,.bbclass
|