Skip to content

Commit

Permalink
Made calls space independent
Browse files Browse the repository at this point in the history
  • Loading branch information
trag1c committed Nov 13, 2022
1 parent a2f4096 commit 129fcc5
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
{
"version": "0.11.0",
"version": "0.11.1",
"configurations": [
{
"name": "Extension",
Expand Down
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to the "samarium-language" extension will be documented in t

The format is based on [Keep a Changelog](http://keepachangelog.com/).

## [0.11.1] - 2022-11-13

### Fixed
- Made calls space independent

## [0.11.0] - 2022-11-09

### Added
Expand Down Expand Up @@ -147,4 +152,5 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
[0.9.0]: https://github.com/samarium-lang/vscode-samarium/compare/0.8.0...0.9.0
[0.10.0]: https://github.com/samarium-lang/vscode-samarium/compare/0.9.0...0.10.0
[0.10.1]: https://github.com/samarium-lang/vscode-samarium/compare/0.10.0...0.10.1
[0.11.0]: https://github.com/samarium-lang/vscode-samarium/compare/0.10.1...0.11.0
[0.11.0]: https://github.com/samarium-lang/vscode-samarium/compare/0.10.1...0.11.0
[0.11.1]: https://github.com/samarium-lang/vscode-samarium/compare/0.11.0...0.11.1
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"publisher": "Samarium",
"repository": "https://github.com/samarium-lang/vscode-samarium.git",
"icon": "images/SamariumWhiteCircle.png",
"version": "0.11.0",
"version": "0.11.1",
"engines": {
"vscode": "^1.63.0"
},
Expand Down
4 changes: 2 additions & 2 deletions syntaxes/samarium.tmLanguage.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,13 @@
}
},
{
"match": "((?:[A-Z]\\w*)+)\\(?",
"match": "((?:[A-Z]\\w*)+)\\s*\\(?",
"captures": {
"1": { "name": "entity.name.class.samarium" }
}
},
{
"match": "(\\w+)\\(",
"match": "(\\w+)\\s*\\(",
"captures": {
"1": { "name": "entity.name.function.samarium" }
}
Expand Down

0 comments on commit 129fcc5

Please sign in to comment.