@@ -2798,7 +2798,7 @@ declare namespace monaco.editor {
27982798 * Enable that the editor scrolls only the predominant axis. Prevents horizontal drift when scrolling vertically on a trackpad.
27992799 * Defaults to true.
28002800 */
2801- scrollPredominantAxisOnly ?: boolean ;
2801+ scrollPredominantAxis ?: boolean ;
28022802 /**
28032803 * The modifier to be used to add multiple cursors with the mouse.
28042804 * Defaults to 'alt'
@@ -3777,34 +3777,35 @@ declare namespace monaco.editor {
37773777 scrollbar = 79 ,
37783778 scrollBeyondLastColumn = 80 ,
37793779 scrollBeyondLastLine = 81 ,
3780- selectionClipboard = 82 ,
3781- selectionHighlight = 83 ,
3782- selectOnLineNumbers = 84 ,
3783- showFoldingControls = 85 ,
3784- showUnused = 86 ,
3785- snippetSuggestions = 87 ,
3786- smoothScrolling = 88 ,
3787- stopRenderingLineAfter = 89 ,
3788- suggest = 90 ,
3789- suggestFontSize = 91 ,
3790- suggestLineHeight = 92 ,
3791- suggestOnTriggerCharacters = 93 ,
3792- suggestSelection = 94 ,
3793- tabCompletion = 95 ,
3794- useTabStops = 96 ,
3795- wordSeparators = 97 ,
3796- wordWrap = 98 ,
3797- wordWrapBreakAfterCharacters = 99 ,
3798- wordWrapBreakBeforeCharacters = 100 ,
3799- wordWrapColumn = 101 ,
3800- wordWrapMinified = 102 ,
3801- wrappingIndent = 103 ,
3802- wrappingStrategy = 104 ,
3803- editorClassName = 105 ,
3804- pixelRatio = 106 ,
3805- tabFocusMode = 107 ,
3806- layoutInfo = 108 ,
3807- wrappingInfo = 109
3780+ scrollPredominantAxis = 82 ,
3781+ selectionClipboard = 83 ,
3782+ selectionHighlight = 84 ,
3783+ selectOnLineNumbers = 85 ,
3784+ showFoldingControls = 86 ,
3785+ showUnused = 87 ,
3786+ snippetSuggestions = 88 ,
3787+ smoothScrolling = 89 ,
3788+ stopRenderingLineAfter = 90 ,
3789+ suggest = 91 ,
3790+ suggestFontSize = 92 ,
3791+ suggestLineHeight = 93 ,
3792+ suggestOnTriggerCharacters = 94 ,
3793+ suggestSelection = 95 ,
3794+ tabCompletion = 96 ,
3795+ useTabStops = 97 ,
3796+ wordSeparators = 98 ,
3797+ wordWrap = 99 ,
3798+ wordWrapBreakAfterCharacters = 100 ,
3799+ wordWrapBreakBeforeCharacters = 101 ,
3800+ wordWrapColumn = 102 ,
3801+ wordWrapMinified = 103 ,
3802+ wrappingIndent = 104 ,
3803+ wrappingStrategy = 105 ,
3804+ editorClassName = 106 ,
3805+ pixelRatio = 107 ,
3806+ tabFocusMode = 108 ,
3807+ layoutInfo = 109 ,
3808+ wrappingInfo = 110
38083809 }
38093810 export const EditorOptions : {
38103811 acceptSuggestionOnCommitCharacter : IEditorOption < EditorOption . acceptSuggestionOnCommitCharacter , boolean > ;
@@ -3889,6 +3890,7 @@ declare namespace monaco.editor {
38893890 scrollbar : IEditorOption < EditorOption . scrollbar , InternalEditorScrollbarOptions > ;
38903891 scrollBeyondLastColumn : IEditorOption < EditorOption . scrollBeyondLastColumn , number > ;
38913892 scrollBeyondLastLine : IEditorOption < EditorOption . scrollBeyondLastLine , boolean > ;
3893+ scrollPredominantAxis : IEditorOption < EditorOption . scrollPredominantAxis , boolean > ;
38923894 selectionClipboard : IEditorOption < EditorOption . selectionClipboard , boolean > ;
38933895 selectionHighlight : IEditorOption < EditorOption . selectionHighlight , boolean > ;
38943896 selectOnLineNumbers : IEditorOption < EditorOption . selectOnLineNumbers , boolean > ;
0 commit comments