Skip to content

Commit

Permalink
Broken links fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
igochkov committed Jun 5, 2023
1 parent 1302c75 commit 07439f6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 19 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2016 Ivaylo Gochkov
Copyright (c) 2016-2023 Ivaylo Gochkov

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# EBNF Tools for Visual Studio Code
[![Version](https://vsmarketplacebadge.apphb.com/version/igochkov.vscode-ebnf.svg)](https://marketplace.visualstudio.com/items?itemName=igochkov.vscode-ebnf)
[![Installs](https://vsmarketplacebadge.apphb.com/installs/igochkov.vscode-ebnf.svg)](https://marketplace.visualstudio.com/items?itemName=igochkov.vscode-ebnf)

The EBNF Tools adds language support for the [EBNF](https://en.wikipedia.org/wiki/Extended_Backus%E2%80%93Naur_Form) syntax notation to Visual Studio Code.

Expand All @@ -13,16 +11,16 @@ See the [changelog](CHANGELOG.md) for changes and roadmap.
- Bracket matching

### Syntax highlighting (colorization)
![Syntax highlighting](https://igochkov.github.io/vscode-ebnf/docs/syntax-highlighting.png)
![Syntax highlighting](https://raw.githubusercontent.com/igochkov/vscode-ebnf/master/docs/syntax-highlighting.png)

### Commenting blocks of code
![Commenting blocks of code](https://igochkov.github.io/vscode-ebnf/docs/commenting-block.gif)
![Commenting blocks of code](https://raw.githubusercontent.com/igochkov/vscode-ebnf/master/docs/commenting-block.gif)

### Bracket matching
![Brace matching](https://igochkov.github.io/vscode-ebnf/docs/brace-matching.gif)
![Brace matching](https://raw.githubusercontent.com/igochkov/vscode-ebnf/master/docs/brace-matching.gif)

## Contribute
Check out the [contribution guidelines](CONTRIBUTING.md) if you want to contribute to this project.
Check out the [contribution guidelines](https://raw.githubusercontent.com/igochkov/vscode-ebnf/master/CONTRIBUTING.md) if you want to contribute to this project.

## License
[MIT](LICENSE)
12 changes: 1 addition & 11 deletions ebnf.configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,38 +3,28 @@
"blockComment": [ "(*", "*)" ]
},
"brackets": [
// repeat symbols
[ "{", "}" ],
[ "(:", ":)" ],

// option symbols
[ "[", "]" ],
[ "(/", "/)" ],

// group symbols
[ "(", ")" ],

// other

["=", ";"]
],
// symbols that are auto closed when typing
"autoClosingPairs": [
// repeat symbols
["{", "}"],
["(:", ":)"],

// option symbols
["[", "]"],
["(/", "/)"],

// comment symbols
{ "open": "(*", "close": "*)", "notIn": ["string", "comment"] },

// quote symbols
{ "open": "\"", "close": "\"", "notIn": ["string", "comment"] },
{ "open": "'", "close": "'", "notIn": ["string", "comment"] },

// other
{ "open": "=", "close": ";", "notIn": ["string", "comment"] },
{ "open": "?", "close": "?", "notIn": ["string", "comment"] }
]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"license": "MIT",
"categories": [
"Languages"
"Programming Languages"
],
"keywords": [
"ebnf",
Expand Down

0 comments on commit 07439f6

Please sign in to comment.