monaco-languageclient icon indicating copy to clipboard operation
monaco-languageclient copied to clipboard

Repo hosts npm packages for monaco-languageclient, vscode-ws-jsonrpc, monaco-editor-wrapper, @typefox/monaco-editor-react and monaco-languageclient-examples

Results 106 monaco-languageclient issues
Sort by recently updated
recently updated
newest added

Hi everyone, I am working on a text-editor desktop app and I am using the monaco-editor library, I have been able to implement loading and switching between different files and...

Hi the below code, does not work with React StrictMode double render. ``` const CodeEditorComponent = forwardRef((props: IProps, ref: ForwardedRef) => { let editorRef: any = useRef(null); const onMonacoLoad =...

The clangd example already contains means to synchronize files between client and server (web worker and main in that case). We should extend this to be able to synchronize files...

enhancement

When I Ctrl + click an import statement in the editor, I get: `FileOperationError: Unable to read file '*****.extension' (Error: Unable to resolve nonexistent file ''*****.extension')` That makes sense, because...

When editor component is unmounted (user click back button in modal with editor and opens it again), monaco editor is not shown back then. Problem only appears when extended editor...

Various issue regarding problems with the react component came up in the last couple of weeks. Some related to things we did wrong, but others are due to the nature...

enhancement

## Description This PR adds a comprehensive guide for integrating **Language Server Protocol (LSP)** with `@monaco-editor/react` in **Next.js** applications, while avoiding common **SSR (Server-Side Rendering)** issues. The guide includes: 1....

* Created a custom FileSystemProvider to capture file changed * Send file change/delete via new websocket message on the existing channel * Use a /tmp folder path so the server...

as discussed in https://github.com/TypeFox/monaco-languageclient/pull/763 , adding groovy editor to angular to support multiple lang mode like https://microsoft.github.io/monaco-editor/ , (this will be a good starting point as well to attract angular...

Hello, I referenced the code in [example](https://github.com/TypeFox/monaco-languageclient/blob/main/packages/examples/src/bare/client.ts) and wrote a C language service. Since I'm using Next.js, to avoid the annoying SSR issues, I opted for **@monaco-editor/react** , which is...