Skip to content

Commit

Permalink
feat: add IC10 language support extension for VS Code with completion…
Browse files Browse the repository at this point in the history
…s, hover information, signature help, goto definition, diagnostics, and more.

feat(extension.ts): add IC10 Language Support extension with Language Server Protocol (LSP) implementation

feat(test): add test suite for extension
feat(test): add script to run extension tests using vscode-test-electron

feat(syntax): add syntax highlighting for ic10 files

feat(tsconfig.json): add compiler options for strict type-checking and source maps. Set target to ES2020 and module to commonjs.
  • Loading branch information
awilliamson committed Mar 28, 2023
1 parent 78070fc commit 4036b52
Show file tree
Hide file tree
Showing 10 changed files with 5,339 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
IC10 YEEEEE
11 changes: 11 additions & 0 deletions language-configuration.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"comments": {
"lineComment": "#"
},
"brackets": [
],
"autoClosingPairs": [
],
"surroundingPairs": [
]
}
Loading

0 comments on commit 4036b52

Please sign in to comment.