1
0
mirror of https://github.com/amix/vimrc synced 2025-06-16 01:25:00 +08:00

Updated all the plugins. Removed powerline. Added vim-airline (replacement for powerline). Added vim-fugitive.

This commit is contained in:
amix
2013-11-16 19:45:48 +00:00
parent 351979d3e0
commit 86f4456be1
239 changed files with 14942 additions and 8068 deletions

View File

@ -2,28 +2,28 @@
snippet ps
create or replace package ${1:name}
as
${2:-- spec}
${0:-- spec}
end; -- end of package spec $1
# create package body
snippet pb
create or replace package body ${1:name}
as
${2:-- body}
${0:-- body}
end; -- end of package body $1;
# package procedure spec
snippet pps
procedure ${1:name}(${2:args});
procedure ${1:name}(${0:args});
# package procedure body
snippet ppb
procedure ${1:name}(${2:args})
as
begin
${3:-- body}
${0:-- body}
end $2;
# package function spec
snippet pfs
function ${1:name}(${2:args})
return ${3:type};
return ${0:type};
# package function body
snippet pfb
function ${1:name}(${2:args})
@ -31,7 +31,7 @@ snippet pfb
as
l_res $3;
begin
${4:-- body};
${0:-- body};
return l_res;
end $1;
# snow errors
@ -39,71 +39,71 @@ snippet err
show errors;
# proc/func in parameter
snippet p
${1:name} ${2:in} ${3:type} ${4: := null}
${1:name} ${2:in} ${3:type} ${0: := null}
# package type: record
snippet tr
type tr_${1:name} is record (${2:/* columns */});
type tr_${1:name} is record (${0:/* columns */});
# package type: nested table
snippet tt
type tt_${1:name} is table of tr_${2:name};
type tt_${1:name} is table of tr_${0:name};
# package type: indexed table
snippet tti
type tt_${1:name} is table of tr_${2:name} index by binary_integer;
type tt_${1:name} is table of tr_${0:name} index by binary_integer;
# proc/func comment
snippet doc
/*
* ${1: comment ...}
* ${0: comment ...}
*/
# plsql block
snippet beg
begin
${1}
${0}
end;
# plsql block with declare part
snippet dec
declare
${1}
begin
${2}
${0}
end;
# return pipe row
snippet rpipe
for ${1:i} in 1 .. ${2:l_res}.count loop
for ${1:i} in 1 .. ${0:l_res}.count loop
pipe row( $2($1) );
end loop;
return;
# bulk collect
snippet bc
bulk collect into ${1}
bulk collect into ${0}
# local variable
snippet l
l_${1} ${2:number};
l_${1} ${0:number};
# output
snippet log
dbms_output.put_line('${1}');
dbms_output.put_line('${0}');
# for loop
snippet for
for ${1:i} in ${2:1}..${3:42} loop
${3}
${0}
end loop;
# for loop with select
snippet fors
for ${1:rec} in (${2: select}) loop
${3}
${0}
end loop;
# for loop with collection
snippet forc
for ${1:i} in ${2:l_var}.first .. $2.last loop
${3: -- dbms_output.put_line($2($1)); }
${0: -- dbms_output.put_line($2($1)); }
end loop;
# if
snippet if
if ${1} then
${2}
${0}
end if;
snippet ife
if ${1} then
${2}
else
${3}
${0}
end if;