.vim: Dammit

Forgot to trim .git information from plugins
This commit is contained in:
2017-08-16 14:37:46 -05:00
parent 85b63b8319
commit 58b1e98578
61 changed files with 3438 additions and 2 deletions

View File

@@ -0,0 +1,48 @@
create or replace package %FILE%
is
/*
* %FFILE%
* Copyright (C) %YEAR% %USER% <%MAIL%>
*
* Distributed under terms of the %LICENSE% license.
*/
procedure main (pv_param1 varchar2(50)
,pv_param2 varchar2(50));
end %FILE%
/
show errors
exit
create or replace package body %FILE%
is
/*
* %FFILE%
* Copyright (C) %YEAR% %USER% <%MAIL%>
*
* Distributed under terms of the %LICENSE% license.
*/
procedure main (pv_param1 varchar2(50)
,pv_param2 varchar2(50))
is
begin
null;
exception
when others then
raise;
end main;
end %FILE%
/
show errors
exit