Skip to content

Commit

Permalink
Modified the line comment configuration
Browse files Browse the repository at this point in the history
The fotran and modern configuration json were incorrectly putting the line
character in an array. This made the more recent version of VS Code crash
with an exception.

Fixes #1
  • Loading branch information
Gimly committed May 31, 2016
1 parent d42bd3a commit b9e6ea1
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion fortran.configuration.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"comments": {
// symbol used for single line comment. Remove this entry if your language does not support line comments
"lineComment": ["c"]
"lineComment": "c"
},
// symbols used as brackets
"brackets": [
Expand Down
2 changes: 1 addition & 1 deletion modern.configuration.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"comments": {
// symbol used for single line comment. Remove this entry if your language does not support line comments
"lineComment": ["!"]
"lineComment": "!"
},
// symbols used as brackets
"brackets": [
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"description": "An extension for VS Code which provides support for the Fortran language.",
"version": "0.0.1",
"publisher": "Gimly81",
"license": "SEE LICENSE IN LICENSE.md",
"engines": {
"vscode": "^0.10.1"
},
Expand Down

0 comments on commit b9e6ea1

Please sign in to comment.