@@ -3245,17 +3245,6 @@ declare namespace monaco.editor {
32453245
32463246 export type EditorHoverOptions = Readonly < Required < IEditorHoverOptions > > ;
32473247
3248- /**
3249- * Configuration options for semantic highlighting
3250- */
3251- export interface IEditorSemanticHighlightingOptions {
3252- /**
3253- * Enable semantic highlighting.
3254- * Defaults to true.
3255- */
3256- enabled ?: boolean ;
3257- }
3258-
32593248 /**
32603249 * A description for the overview ruler position.
32613250 */
@@ -3797,32 +3786,31 @@ declare namespace monaco.editor {
37973786 selectionClipboard = 82 ,
37983787 selectionHighlight = 83 ,
37993788 selectOnLineNumbers = 84 ,
3800- semanticHighlighting = 85 ,
3801- showFoldingControls = 86 ,
3802- showUnused = 87 ,
3803- snippetSuggestions = 88 ,
3804- smoothScrolling = 89 ,
3805- stopRenderingLineAfter = 90 ,
3806- suggest = 91 ,
3807- suggestFontSize = 92 ,
3808- suggestLineHeight = 93 ,
3809- suggestOnTriggerCharacters = 94 ,
3810- suggestSelection = 95 ,
3811- tabCompletion = 96 ,
3812- useTabStops = 97 ,
3813- wordSeparators = 98 ,
3814- wordWrap = 99 ,
3815- wordWrapBreakAfterCharacters = 100 ,
3816- wordWrapBreakBeforeCharacters = 101 ,
3817- wordWrapColumn = 102 ,
3818- wordWrapMinified = 103 ,
3819- wrappingIndent = 104 ,
3820- wrappingStrategy = 105 ,
3821- editorClassName = 106 ,
3822- pixelRatio = 107 ,
3823- tabFocusMode = 108 ,
3824- layoutInfo = 109 ,
3825- wrappingInfo = 110
3789+ showFoldingControls = 85 ,
3790+ showUnused = 86 ,
3791+ snippetSuggestions = 87 ,
3792+ smoothScrolling = 88 ,
3793+ stopRenderingLineAfter = 89 ,
3794+ suggest = 90 ,
3795+ suggestFontSize = 91 ,
3796+ suggestLineHeight = 92 ,
3797+ suggestOnTriggerCharacters = 93 ,
3798+ suggestSelection = 94 ,
3799+ tabCompletion = 95 ,
3800+ useTabStops = 96 ,
3801+ wordSeparators = 97 ,
3802+ wordWrap = 98 ,
3803+ wordWrapBreakAfterCharacters = 99 ,
3804+ wordWrapBreakBeforeCharacters = 100 ,
3805+ wordWrapColumn = 101 ,
3806+ wordWrapMinified = 102 ,
3807+ wrappingIndent = 103 ,
3808+ wrappingStrategy = 104 ,
3809+ editorClassName = 105 ,
3810+ pixelRatio = 106 ,
3811+ tabFocusMode = 107 ,
3812+ layoutInfo = 108 ,
3813+ wrappingInfo = 109
38263814 }
38273815 export const EditorOptions : {
38283816 acceptSuggestionOnCommitCharacter : IEditorOption < EditorOption . acceptSuggestionOnCommitCharacter , boolean > ;
@@ -3910,7 +3898,6 @@ declare namespace monaco.editor {
39103898 selectionClipboard : IEditorOption < EditorOption . selectionClipboard , boolean > ;
39113899 selectionHighlight : IEditorOption < EditorOption . selectionHighlight , boolean > ;
39123900 selectOnLineNumbers : IEditorOption < EditorOption . selectOnLineNumbers , boolean > ;
3913- semanticHighlighting : IEditorOption < EditorOption . semanticHighlighting , any > ;
39143901 showFoldingControls : IEditorOption < EditorOption . showFoldingControls , 'always' | 'mouseover' > ;
39153902 showUnused : IEditorOption < EditorOption . showUnused , boolean > ;
39163903 snippetSuggestions : IEditorOption < EditorOption . snippetSuggestions , 'none' | 'top' | 'bottom' | 'inline' > ;
0 commit comments