Skip to content

Commit

Permalink
Merge pull request #83 from Sv3n/master
Browse files Browse the repository at this point in the history
Make indentationRules case-insensitive (#81)
  • Loading branch information
Schottkyc137 authored Mar 10, 2024
2 parents 9207427 + 9f84ca9 commit 274893e
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions language-configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,13 @@
["\\", "\\"]
],
"indentationRules": {
"increaseIndentPattern": "\\b(begin|is|port|else|loop|generate|then)\\b",
"decreaseIndentPattern": "^\\s*(elsif|else|end|begin)\\b"
"increaseIndentPattern": {
"pattern": "\\b(begin|is|port|else|loop|generate|then)\\b",
"flags": "i"
},
"decreaseIndentPattern": {
"pattern": "^\\s*(elsif|else|end|begin)\\b",
"flags": "i"
}
}
}

0 comments on commit 274893e

Please sign in to comment.