1
0
mirror of https://github.com/amix/vimrc synced 2025-06-17 10:55:00 +08:00

Forgot to check in the rest of the updated plugins :/

This commit is contained in:
Amir
2022-09-20 10:08:31 +02:00
parent c6ba5aa440
commit 3978f7b467
77 changed files with 630 additions and 371 deletions

View File

@ -8,7 +8,7 @@ snippet ps
snippet pb
create or replace package body ${1:name}
as
${0:-- body}
$0
end; -- end of package body $1;
# package procedure spec
snippet pps
@ -18,7 +18,7 @@ snippet ppb
procedure ${1:name}(${2:args})
as
begin
${0:-- body}
$0
end $2;
# package function spec
snippet pfs
@ -31,7 +31,7 @@ snippet pfb
as
l_res $3;
begin
${0:-- body};
$0;
return l_res;
end $1;
# snow errors