Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow for function calls within brace validation lists #86

Merged
merged 2 commits into from
Jul 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Matlab.tmbundle/Syntaxes/MATLAB.tmLanguage
Original file line number Diff line number Diff line change
Expand Up @@ -2792,6 +2792,10 @@
</dict>
<key>patterns</key>
<array>
<dict>
<key>include</key>
<string>#function_call</string>
</dict>
<dict>
<key>include</key>
<string>#braced_validator_list</string>
Expand Down
7 changes: 7 additions & 0 deletions test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ The tests in this directory leverage:

https://github.com/PanAeon/vscode-tmgrammar-test

# Test requirements

The tests require xmllint which can be installed (on apt using linux distros) using
```bash
sudo apt install libxml2-utils
```

# Running the tests

From the root of the repo
Expand Down
Loading
Loading