Skip to content

Commit

Permalink
Merge pull request #51 from SpaceEEC/fix_closing_paren
Browse files Browse the repository at this point in the history
snippets: close opened parentheses in function and procedure
  • Loading branch information
alefragnani committed Oct 18, 2019
2 parents 1b1846b + 0984cea commit 3244d3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions snippets/pascal.json
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
"function end": {
"prefix": "function",
"body": [
"function ${1:MyFunction}(${2:params}:${3:integer};",
"function ${1:MyFunction}(${2:params}):${3:integer};",
"begin",
"\t$0",
"end;"
Expand Down Expand Up @@ -259,7 +259,7 @@
"procedure": {
"prefix": "procedure",
"body": [
"procedure ${1:MyProcedure}(${2:params};",
"procedure ${1:MyProcedure}(${2:params});",
"begin",
"\t$0",
"end;"
Expand Down

0 comments on commit 3244d3f

Please sign in to comment.