ExpandSuggestionDocs Settings conflict with the command panel
See original GitHub issueIn the past, I made the details expand by default in this way, but in the current version this configuration makes the command panel unusable
this.editor = window.monaco.editor.create(this.$el, this.editorOptions, {
storageService: {
get() {},
remove() {},
getBoolean(key) {
if (window.activeLanguage && window.activeLanguage == 'java' && key === 'expandSuggestionDocs') {
return true;
}
return false;
},
store() {},
onWillSaveState() {},
onDidChangeStorage() {}
}
}
);
Issue Analytics
- State:
- Created 3 years ago
- Comments:14 (4 by maintainers)
Top Results From Across the Web
Suggest edits in Google Docs - Computer
Suggest changes to a file. On your computer, open a document at docs.google.com. Select the text you want to change. A button appears...
Read more >User and Workspace Settings - Visual Studio Code
To open the Settings editor, use the following VS Code menu command: ... matchingDocuments: Suggest words from all open documents of the same...
Read more >Word Options (Advanced) - Microsoft Support
Use advanced Word options to customize editing tasks, document display, ... and select the number of documents shown in the Recent Documents list....
Read more >Git command reference | Looker - Google Cloud
Git Actions panel. Commit Changes & Push, Button. Commit & Resolve Conflict, The Commit & Resolve Conflict button is displayed when you make ......
Read more >Review UI Overview
The change can't be merged into the destination branch due to conflicts. ... The Download drop-down panel in the change header offers commands...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
This is a hack, don’t use it for production, but you can get this to work in
0.31.1
this way:@martonlanga Sorry, I cannot answer that because I don’t know. You can try searching for
IStorageService
in thesrc/vs/editor
folder in thevscode
repo and see which features use that.