Skip to content

Commit 5ecfae4

Browse files
committed
(GH-289) Fix block comment characters
This commit uses the correct block comment characters as per puppet specifications.
1 parent baf25a6 commit 5ecfae4

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
2323
- ([GH-241](https://github.com/lingua-pupuli/puppet-vscode/issues/241)) Honor specified tcp port
2424
- ([GH-240](https://github.com/lingua-pupuli/puppet-vscode/issues/240)) Add TCP retry functionality
2525
- ([GH-296](https://github.com/lingua-pupuli/puppet-vscode/issues/296)) Set document file scheme
26+
- ([GH-289](https://github.com/lingua-pupuli/puppet-vscode/issues/289)) Fix autoindenting for DSL
2627

2728
## 0.10.0 - 2018-03-29
2829

languages/puppet-language-configuration.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// symbol used for single line comment. Remove this entry if your language does not support line comments
44
"lineComment": "#",
55
// symbols used for start and end a block comment. Remove this entry if your language does not support block comments
6-
"blockComment": ["#"]
6+
"blockComment": ["/*","*/"]
77
},
88
// symbols used as brackets
99
"brackets": [

0 commit comments

Comments
 (0)