Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | " Vim plugin file |
| 2 | " Purpose: Create a template for new bb files |
| 3 | " Author: Ricardo Salveti <rsalveti@gmail.com> |
| 4 | " Copyright: Copyright (C) 2008 Ricardo Salveti <rsalveti@gmail.com> |
| 5 | " |
| 6 | " This file is licensed under the MIT license, see COPYING.MIT in |
| 7 | " this source distribution for the terms. |
| 8 | " |
| 9 | " Based on the gentoo-syntax package |
| 10 | " |
| 11 | " Will try to use git to find the user name and email |
| 12 | |
| 13 | if &compatible || v:version < 600 |
| 14 | finish |
| 15 | endif |
| 16 | |
| 17 | fun! <SID>GetUserName() |
| 18 | let l:user_name = system("git config --get user.name") |
| 19 | if v:shell_error |
| 20 | return "Unknown User" |
| 21 | else |
| 22 | return substitute(l:user_name, "\n", "", "") |
| 23 | endfun |
| 24 | |
| 25 | fun! <SID>GetUserEmail() |
| 26 | let l:user_email = system("git config --get user.email") |
| 27 | if v:shell_error |
| 28 | return "unknow@user.org" |
| 29 | else |
| 30 | return substitute(l:user_email, "\n", "", "") |
| 31 | endfun |
| 32 | |
| 33 | fun! BBHeader() |
| 34 | let l:current_year = strftime("%Y") |
| 35 | let l:user_name = <SID>GetUserName() |
| 36 | let l:user_email = <SID>GetUserEmail() |
| 37 | 0 put ='# Copyright (C) ' . l:current_year . |
| 38 | \ ' ' . l:user_name . ' <' . l:user_email . '>' |
| 39 | put ='# Released under the MIT license (see COPYING.MIT for the terms)' |
| 40 | $ |
| 41 | endfun |
| 42 | |
| 43 | fun! NewBBTemplate() |
| 44 | let l:paste = &paste |
| 45 | set nopaste |
| 46 | |
| 47 | " Get the header |
| 48 | call BBHeader() |
| 49 | |
| 50 | " New the bb template |
| 51 | put ='DESCRIPTION = \"\"' |
| 52 | put ='HOMEPAGE = \"\"' |
| 53 | put ='LICENSE = \"\"' |
| 54 | put ='SECTION = \"\"' |
| 55 | put ='DEPENDS = \"\"' |
| 56 | put ='' |
| 57 | put ='SRC_URI = \"\"' |
| 58 | |
| 59 | " Go to the first place to edit |
| 60 | 0 |
| 61 | /^DESCRIPTION =/ |
| 62 | exec "normal 2f\"" |
| 63 | |
| 64 | if paste == 1 |
| 65 | set paste |
| 66 | endif |
| 67 | endfun |
| 68 | |
| 69 | if !exists("g:bb_create_on_empty") |
| 70 | let g:bb_create_on_empty = 1 |
| 71 | endif |
| 72 | |
| 73 | " disable in case of vimdiff |
| 74 | if v:progname =~ "vimdiff" |
| 75 | let g:bb_create_on_empty = 0 |
| 76 | endif |
| 77 | |
| 78 | augroup NewBB |
| 79 | au BufNewFile *.bb |
| 80 | \ if g:bb_create_on_empty | |
| 81 | \ call NewBBTemplate() | |
| 82 | \ endif |
| 83 | augroup END |
| 84 | |