You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'markdownDescription': nls.localizeByDefault('The number of spaces a tab is equal to. This setting is overridden based on the file contents when `#editor.detectIndentation#` is on.')
82
-
},
83
77
'editor.defaultFormatter': {
84
78
'type': 'string',
85
79
'default': null,
86
80
'description': 'Default formatter.'
87
81
},
88
-
'editor.insertSpaces': {
89
-
'type': 'boolean',
90
-
'default': EDITOR_MODEL_DEFAULTS.insertSpaces,
91
-
'markdownDescription': nls.localizeByDefault('Insert spaces when pressing `Tab`. This setting is overridden based on the file contents when `#editor.detectIndentation#` is on.')
'markdownDescription': nls.localizeByDefault('Controls whether `#editor.tabSize#` and `#editor.insertSpaces#` will be automatically detected when a file is opened based on the file contents.')
'description': nls.localizeByDefault('Remove trailing auto inserted whitespace.')
89
+
'default': EDITOR_MODEL_DEFAULTS.insertSpaces,
90
+
'markdownDescription': nls.localizeByDefault('Insert spaces when pressing `Tab`. This setting is overridden based on the file contents when `#editor.detectIndentation#` is on.')
'description': nls.localizeByDefault('Special handling for large files to disable certain memory intensive features.')
107
96
},
97
+
'editor.semanticHighlighting.enabled': {
98
+
'enum': [true,false,'configuredByTheme'],
99
+
'markdownEnumDescriptions': [
100
+
nls.localizeByDefault('Semantic highlighting enabled for all color themes.'),
101
+
nls.localizeByDefault('Semantic highlighting disabled for all color themes.'),
102
+
nls.localizeByDefault('Semantic highlighting is configured by the current color theme\'s `semanticHighlighting` setting.')
103
+
],
104
+
'default': 'configuredByTheme',
105
+
'description': nls.localizeByDefault('Controls whether the semanticHighlighting is shown for the languages that support it.')
106
+
},
107
+
'editor.tabSize': {
108
+
'type': 'number',
109
+
'default': EDITOR_MODEL_DEFAULTS.tabSize,
110
+
'minimum': 1,
111
+
'markdownDescription': nls.localizeByDefault('The number of spaces a tab is equal to. This setting is overridden based on the file contents when `#editor.detectIndentation#` is on.')
Copy file name to clipboardExpand all lines: packages/monaco/uplift-journal.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -83,3 +83,4 @@ To do:
83
83
> Nevermind that, too. Seems that any language that's open in an editor _on start_ won't work during that session. But anything in a language that wasn't open on start is fine.
84
84
-[] Add new editor preferences.
85
85
-[] There's a context-menu command to open the command palette. In VSCode, that opens in the same place as the keyboard shortcut, but in Theia it's opening inside the editor.
86
+
-[] Editor context menu 'goto' commands not working (no peek editor shown).
0 commit comments