Is there a way to disable IntelliSense? #3808
Replies: 6 comments
-
In my use case just setting |
Beta Was this translation helpful? Give feedback.
-
@mattgodbolt Thank You. I too thought |
Beta Was this translation helpful? Give feedback.
-
There is currently no way to disable suggestions entirely in the AMD distribution. The only possible way would be by using the ESM distribution of the editor and not including the |
Beta Was this translation helpful? Give feedback.
-
🤔 .monaco-editor .editor-widget {
display: none !important;
visibility: hidden !important;
} ( It'd be swell if My use case is pretty common with education platforms where surfacing additional information is surprisingly harmful to the experience of new users. Other example: freeCodeCamp/learn#88 |
Beta Was this translation helpful? Give feedback.
-
@alexdima Hi. Could you tell a bit more about how to exclude Suggestion functionality via ESM way? |
Beta Was this translation helpful? Give feedback.
-
Seems that i could disable default javascript suggestions
See all options at |
Beta Was this translation helpful? Give feedback.
-
In my project, IntelliSense seems to obscure a lot of the code in the editor, similar to what is described in this issue - #344 (comment)
Can I disable IntelliSense entirely? I went through IEditorOptions in the API, but didn't find anything that I could use.
I also looked at the VSCode docs on Customizing IntelliSense, but not sure if/how they relate to Monaco Editor.On further digging - I tried the config from VSCode docs in the Monaco Playground, and it seems like intellisense is turned off -
I just took the config described in the "Customizing IntelliSense" section to try this out, but is there another command that disables IntelliSense entirely all at once, instead of using individual properties?
Beta Was this translation helpful? Give feedback.
All reactions