Skip to content

Commit

Permalink
WIP: clangd improvements
Browse files Browse the repository at this point in the history
- new example: socket.io for file protocol to non worker target
- define file system endpoints
- clangd LS uses message port for communication
- Use wtm new ComChannelEndpoints for handling async communication of message channels or workers
- worker transfers files to client via message channel
- clangd example: list open files below editor
  • Loading branch information
kaisalmen committed Oct 7, 2024
1 parent 9219c3e commit 2843ca9
Show file tree
Hide file tree
Showing 27 changed files with 7,657 additions and 245 deletions.
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ <h2>Monaco Editor React</h2>
<h3>monaco-editor related examples</h3>
<a href="./packages/examples/ts.html">Monaco Editor Wrapper TypeScript Example</a>
<br>
<a href="./packages/examples/files.html">Files Testbed</a>

<h2>Verification</h2>
<h3>Angular</h2>
Expand Down
256 changes: 250 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions packages/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@
"./vscode/services": {
"types": "./lib/vscode/index.d.ts",
"default": "./lib/vscode/index.js"
},
"./fs": {
"types": "./lib/fs/index.d.ts",
"default": "./lib/fs/index.js"
}
},
"typesVersions": {
Expand All @@ -43,6 +47,9 @@
],
"vscode/services": [
"lib/vscode/index"
],
"fs": [
"lib/fs/index"
]
}
},
Expand Down
Loading

0 comments on commit 2843ca9

Please sign in to comment.