Summary: | app-vim/gentoo-syntax : vimdiff should not create a new ebuild | ||
---|---|---|---|
Product: | Gentoo Linux | Reporter: | Kalin KOZHUHAROV <kalin> |
Component: | Current packages | Assignee: | Vim Maintainers <vim> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | High | ||
Version: | unspecified | ||
Hardware: | x86 | ||
OS: | Linux | ||
Whiteboard: | |||
Package list: | Runtime testing required: | --- |
Description
Kalin KOZHUHAROV
2005-06-20 21:09:01 UTC
added g:ebuild_create_on_empty option to toggle new ebuild creation on/off on a new ebuild. This will make the next release and is in subversion. plugin/newebuild.vim: if !exists("g:ebuild_create_on_empty") " Enable autogeneration of ebuilds by default let g:ebuild_create_on_empty = 1 endif augroup NewEbuild au! autocmd BufNewFile *.e{build,class} \ if g:ebuild_create_on_empty | \ call <SID>MakeNewEbuild() | \ endif augroup END |