diff --git a/src/vs/editor/common/standalone/standaloneEnums.ts b/src/vs/editor/common/standalone/standaloneEnums.ts index 3d436fb75bcf8799796d7f7df7876af84cf5f19f..0d02283d1bb44c305ea5fa620c3ab97b9684a8a9 100644 --- a/src/vs/editor/common/standalone/standaloneEnums.ts +++ b/src/vs/editor/common/standalone/standaloneEnums.ts @@ -247,31 +247,32 @@ export enum EditorOption { selectionClipboard = 79, selectionHighlight = 80, selectOnLineNumbers = 81, - showFoldingControls = 82, - showUnused = 83, - snippetSuggestions = 84, - smoothScrolling = 85, - stopRenderingLineAfter = 86, - suggest = 87, - suggestFontSize = 88, - suggestLineHeight = 89, - suggestOnTriggerCharacters = 90, - suggestSelection = 91, - tabCompletion = 92, - useTabStops = 93, - wordSeparators = 94, - wordWrap = 95, - wordWrapBreakAfterCharacters = 96, - wordWrapBreakBeforeCharacters = 97, - wordWrapColumn = 98, - wordWrapMinified = 99, - wrappingIndent = 100, - wrappingAlgorithm = 101, - editorClassName = 102, - pixelRatio = 103, - tabFocusMode = 104, - layoutInfo = 105, - wrappingInfo = 106 + semanticHighlighting = 82, + showFoldingControls = 83, + showUnused = 84, + snippetSuggestions = 85, + smoothScrolling = 86, + stopRenderingLineAfter = 87, + suggest = 88, + suggestFontSize = 89, + suggestLineHeight = 90, + suggestOnTriggerCharacters = 91, + suggestSelection = 92, + tabCompletion = 93, + useTabStops = 94, + wordSeparators = 95, + wordWrap = 96, + wordWrapBreakAfterCharacters = 97, + wordWrapBreakBeforeCharacters = 98, + wordWrapColumn = 99, + wordWrapMinified = 100, + wrappingIndent = 101, + wrappingAlgorithm = 102, + editorClassName = 103, + pixelRatio = 104, + tabFocusMode = 105, + layoutInfo = 106, + wrappingInfo = 107 } /** diff --git a/src/vs/monaco.d.ts b/src/vs/monaco.d.ts index 905bcd9cdc835bec655c6914d91751b8cfcc7c4e..3a6307fbbdae9285b7bf3911295087eea9ae03e3 100644 --- a/src/vs/monaco.d.ts +++ b/src/vs/monaco.d.ts @@ -3753,31 +3753,32 @@ declare namespace monaco.editor { selectionClipboard = 79, selectionHighlight = 80, selectOnLineNumbers = 81, - showFoldingControls = 82, - showUnused = 83, - snippetSuggestions = 84, - smoothScrolling = 85, - stopRenderingLineAfter = 86, - suggest = 87, - suggestFontSize = 88, - suggestLineHeight = 89, - suggestOnTriggerCharacters = 90, - suggestSelection = 91, - tabCompletion = 92, - useTabStops = 93, - wordSeparators = 94, - wordWrap = 95, - wordWrapBreakAfterCharacters = 96, - wordWrapBreakBeforeCharacters = 97, - wordWrapColumn = 98, - wordWrapMinified = 99, - wrappingIndent = 100, - wrappingAlgorithm = 101, - editorClassName = 102, - pixelRatio = 103, - tabFocusMode = 104, - layoutInfo = 105, - wrappingInfo = 106 + semanticHighlighting = 82, + showFoldingControls = 83, + showUnused = 84, + snippetSuggestions = 85, + smoothScrolling = 86, + stopRenderingLineAfter = 87, + suggest = 88, + suggestFontSize = 89, + suggestLineHeight = 90, + suggestOnTriggerCharacters = 91, + suggestSelection = 92, + tabCompletion = 93, + useTabStops = 94, + wordSeparators = 95, + wordWrap = 96, + wordWrapBreakAfterCharacters = 97, + wordWrapBreakBeforeCharacters = 98, + wordWrapColumn = 99, + wordWrapMinified = 100, + wrappingIndent = 101, + wrappingAlgorithm = 102, + editorClassName = 103, + pixelRatio = 104, + tabFocusMode = 105, + layoutInfo = 106, + wrappingInfo = 107 } export const EditorOptions: { acceptSuggestionOnCommitCharacter: IEditorOption; @@ -3862,6 +3863,7 @@ declare namespace monaco.editor { selectionClipboard: IEditorOption; selectionHighlight: IEditorOption; selectOnLineNumbers: IEditorOption; + semanticHighlighting: IEditorOption; showFoldingControls: IEditorOption; showUnused: IEditorOption; snippetSuggestions: IEditorOption;