Skip to content

Commit b2f5649

Browse files
committed
Fix monaco.d.ts and EditorOption enum type error
1 parent 7c711c1 commit b2f5649

File tree

2 files changed

+21
-21
lines changed

2 files changed

+21
-21
lines changed

src/vs/editor/common/standalone/standaloneEnums.ts

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -298,16 +298,16 @@ export enum EditorOption {
298298
wordWrapColumn = 123,
299299
wordWrapOverride1 = 124,
300300
wordWrapOverride2 = 125,
301-
wrappingIndent = 126,
302-
wrappingStrategy = 127,
303-
showDeprecated = 128,
304-
inlayHints = 129,
305-
editorClassName = 130,
306-
pixelRatio = 131,
307-
tabFocusMode = 132,
308-
layoutInfo = 133,
309-
wrappingInfo = 134,
310-
wordBreak = 135,
301+
wordBreak = 126,
302+
wrappingIndent = 127,
303+
wrappingStrategy = 128,
304+
showDeprecated = 129,
305+
inlayHints = 130,
306+
editorClassName = 131,
307+
pixelRatio = 132,
308+
tabFocusMode = 133,
309+
layoutInfo = 134,
310+
wrappingInfo = 135
311311
}
312312

313313
/**
@@ -898,4 +898,4 @@ export enum WrappingIndent {
898898
* DeepIndent => wrapped lines get +2 indentation toward the parent.
899899
*/
900900
DeepIndent = 3
901-
}
901+
}

src/vs/monaco.d.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4463,16 +4463,16 @@ declare namespace monaco.editor {
44634463
wordWrapColumn = 123,
44644464
wordWrapOverride1 = 124,
44654465
wordWrapOverride2 = 125,
4466-
wrappingIndent = 126,
4467-
wrappingStrategy = 127,
4468-
showDeprecated = 128,
4469-
inlayHints = 129,
4470-
editorClassName = 130,
4471-
pixelRatio = 131,
4472-
tabFocusMode = 132,
4473-
layoutInfo = 133,
4474-
wrappingInfo = 134,
4475-
wordBreak = 135
4466+
wordBreak = 126,
4467+
wrappingIndent = 127,
4468+
wrappingStrategy = 128,
4469+
showDeprecated = 129,
4470+
inlayHints = 130,
4471+
editorClassName = 131,
4472+
pixelRatio = 132,
4473+
tabFocusMode = 133,
4474+
layoutInfo = 134,
4475+
wrappingInfo = 135
44764476
}
44774477

44784478
export const EditorOptions: {

0 commit comments

Comments
 (0)