Skip to content

Commit

Permalink
Closes #8
Browse files Browse the repository at this point in the history
  • Loading branch information
alefragnani committed Jul 21, 2016
1 parent 3f4986b commit 2f05a8b
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 2 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,10 @@ Update two tags:

# Changelog

## Version 0.4.1

* **Fix:** Toggle Line/Block Comment not working (issue [#8](https://github.com/alefragnani/vscode-language-pascal/issues/8))

## Version 0.4.0

* **New:** Go to Symbol
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "pascal",
"displayName": "Language Pascal",
"description": "Pascal support for Visual Studio Code",
"version": "0.4.0",
"version": "0.4.1",
"publisher": "alefragnani",
"galleryBanner": {
"color": "#4682B4",
Expand Down Expand Up @@ -54,7 +54,8 @@
".dpk",
".lfm",
".dpr"
]
],
"configuration": "./pascal.configuration.json"
}
],
"grammars": [
Expand Down
30 changes: 30 additions & 0 deletions pascal.configuration.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"comments": {
// symbol used for single line comment. Remove this entry if your language does not support line comments
"lineComment": "//",
// symbols used for start and end a block comment. Remove this entry if your language does not support block comments
"blockComment": [ "(*", "*)" ]
},
// symbols used as brackets
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
],
// symbols that are auto closed when typing
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
],
// symbols that that can be used to surround a selection
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
]
}

0 comments on commit 2f05a8b

Please sign in to comment.