mirror of
https://git.yoctoproject.org/poky
synced 2026-04-30 12:32:12 +02:00
bitbake: contrib/vim: synchronize from kergoth/vim-bitbake rev 4225ee8b4818d7e4696520567216a3a031c26f7d
(Bitbake rev: 24fb1f2fee449589b0c5468cbdebe9a6ffaac932) Signed-off-by: Chris Laplante <mostthingsweb@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
f3cb1662ca
commit
92f256dc56
46
bitbake/contrib/vim/plugin/newbbappend.vim
Normal file
46
bitbake/contrib/vim/plugin/newbbappend.vim
Normal file
@@ -0,0 +1,46 @@
|
||||
" Vim plugin file
|
||||
" Purpose: Create a template for new bbappend file
|
||||
" Author: Joshua Watt <JPEWhacker@gmail.com>
|
||||
" Copyright: Copyright (C) 2017 Joshua Watt <JPEWhacker@gmail.com>
|
||||
"
|
||||
" This file is licensed under the MIT license, see COPYING.MIT in
|
||||
" this source distribution for the terms.
|
||||
"
|
||||
|
||||
if &compatible || v:version < 600 || exists("b:loaded_bitbake_plugin")
|
||||
finish
|
||||
endif
|
||||
|
||||
fun! NewBBAppendTemplate()
|
||||
if line2byte(line('$') + 1) != -1
|
||||
return
|
||||
endif
|
||||
|
||||
let l:paste = &paste
|
||||
set nopaste
|
||||
|
||||
" New bbappend template
|
||||
0 put ='FILESEXTRAPATHS_prepend := \"${THISDIR}/${PN}:\"'
|
||||
2
|
||||
|
||||
if paste == 1
|
||||
set paste
|
||||
endif
|
||||
endfun
|
||||
|
||||
if !exists("g:bb_create_on_empty")
|
||||
let g:bb_create_on_empty = 1
|
||||
endif
|
||||
|
||||
" disable in case of vimdiff
|
||||
if v:progname =~ "vimdiff"
|
||||
let g:bb_create_on_empty = 0
|
||||
endif
|
||||
|
||||
augroup NewBBAppend
|
||||
au BufNewFile,BufReadPost *.bbappend
|
||||
\ if g:bb_create_on_empty |
|
||||
\ call NewBBAppendTemplate() |
|
||||
\ endif
|
||||
augroup END
|
||||
|
||||
Reference in New Issue
Block a user