monaco-editor-core 0.56.0-dev-20251217 → 0.56.0-dev-20251219

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (197) hide show
  1. package/esm/nls.keys.json +1 -1
  2. package/esm/nls.messages.cs.js +2 -2
  3. package/esm/nls.messages.de.js +2 -2
  4. package/esm/nls.messages.es.js +2 -2
  5. package/esm/nls.messages.fr.js +2 -2
  6. package/esm/nls.messages.it.js +2 -2
  7. package/esm/nls.messages.ja.js +2 -2
  8. package/esm/nls.messages.js +1 -1
  9. package/esm/nls.messages.json +1 -1
  10. package/esm/nls.messages.ko.js +2 -2
  11. package/esm/nls.messages.pl.js +2 -2
  12. package/esm/nls.messages.pt-br.js +2 -2
  13. package/esm/nls.messages.ru.js +2 -2
  14. package/esm/nls.messages.tr.js +2 -2
  15. package/esm/nls.messages.zh-cn.js +2 -2
  16. package/esm/nls.messages.zh-tw.js +2 -2
  17. package/esm/nls.metadata.json +6 -2
  18. package/esm/vs/base/browser/ui/actionbar/actionViewItems.js.map +1 -1
  19. package/esm/vs/base/browser/ui/findinput/findInput.js +6 -1
  20. package/esm/vs/base/browser/ui/findinput/findInput.js.map +1 -1
  21. package/esm/vs/base/browser/ui/inputbox/inputBox.js +17 -1
  22. package/esm/vs/base/browser/ui/inputbox/inputBox.js.map +1 -1
  23. package/esm/vs/base/browser/ui/toggle/toggle.js +78 -6
  24. package/esm/vs/base/browser/ui/toggle/toggle.js.map +1 -1
  25. package/esm/vs/base/common/fuzzyScorer.js +3 -2
  26. package/esm/vs/base/common/fuzzyScorer.js.map +1 -1
  27. package/esm/vs/editor/browser/services/editorWorkerService.js +6 -2
  28. package/esm/vs/editor/browser/services/editorWorkerService.js.map +1 -1
  29. package/esm/vs/editor/common/config/editorConfigurationSchema.js +49 -47
  30. package/esm/vs/editor/common/config/editorConfigurationSchema.js.map +1 -1
  31. package/esm/vs/editor/common/config/editorOptions.js +410 -410
  32. package/esm/vs/editor/common/core/editorColorRegistry.js +70 -69
  33. package/esm/vs/editor/common/core/editorColorRegistry.js.map +1 -1
  34. package/esm/vs/editor/common/cursor/cursorTypeEditOperations.js +3 -3
  35. package/esm/vs/editor/common/cursor/cursorTypeEditOperations.js.map +1 -1
  36. package/esm/vs/editor/common/editorContextKeys.js +47 -47
  37. package/esm/vs/editor/common/languages/modesRegistry.js +1 -1
  38. package/esm/vs/editor/common/languages.js +56 -56
  39. package/esm/vs/editor/common/model/editStack.js +1 -1
  40. package/esm/vs/editor/common/standaloneStrings.js +11 -11
  41. package/esm/vs/editor/common/viewLayout/viewLineRenderer.js +2 -2
  42. package/esm/vs/editor/common/viewModel/viewModelImpl.js +4 -15
  43. package/esm/vs/editor/common/viewModel/viewModelImpl.js.map +1 -1
  44. package/esm/vs/editor/contrib/anchorSelect/browser/anchorSelect.js +6 -6
  45. package/esm/vs/editor/contrib/bracketMatching/browser/bracketMatching.js +18 -9
  46. package/esm/vs/editor/contrib/bracketMatching/browser/bracketMatching.js.map +1 -1
  47. package/esm/vs/editor/contrib/caretOperations/browser/caretOperations.js +2 -2
  48. package/esm/vs/editor/contrib/caretOperations/browser/transpose.js +1 -1
  49. package/esm/vs/editor/contrib/clipboard/browser/clipboard.js +17 -17
  50. package/esm/vs/editor/contrib/codeAction/browser/codeAction.js +1 -1
  51. package/esm/vs/editor/contrib/codeAction/browser/codeActionCommands.js +29 -29
  52. package/esm/vs/editor/contrib/codeAction/browser/codeActionContributions.js +3 -3
  53. package/esm/vs/editor/contrib/codeAction/browser/codeActionController.js +3 -3
  54. package/esm/vs/editor/contrib/codeAction/browser/codeActionMenu.js +8 -8
  55. package/esm/vs/editor/contrib/codeAction/browser/lightBulbWidget.js +9 -9
  56. package/esm/vs/editor/contrib/codelens/browser/codelensController.js +2 -2
  57. package/esm/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerCloseButton.js +1 -1
  58. package/esm/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerHeader.js +1 -1
  59. package/esm/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant.js +1 -1
  60. package/esm/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerActions.js +7 -7
  61. package/esm/vs/editor/contrib/comment/browser/comment.js +6 -6
  62. package/esm/vs/editor/contrib/contextmenu/browser/contextmenu.js +10 -10
  63. package/esm/vs/editor/contrib/cursorUndo/browser/cursorUndo.js +2 -2
  64. package/esm/vs/editor/contrib/dropOrPasteInto/browser/copyPasteContribution.js +4 -4
  65. package/esm/vs/editor/contrib/dropOrPasteInto/browser/copyPasteController.js +9 -9
  66. package/esm/vs/editor/contrib/dropOrPasteInto/browser/defaultProviders.js +8 -8
  67. package/esm/vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorController.js +3 -3
  68. package/esm/vs/editor/contrib/dropOrPasteInto/browser/postEditWidget.js +2 -2
  69. package/esm/vs/editor/contrib/editorState/browser/keybindingCancellation.js +1 -1
  70. package/esm/vs/editor/contrib/find/browser/findController.js +16 -16
  71. package/esm/vs/editor/contrib/find/browser/findWidget.js +26 -26
  72. package/esm/vs/editor/contrib/folding/browser/folding.js +20 -20
  73. package/esm/vs/editor/contrib/folding/browser/folding.js.map +1 -1
  74. package/esm/vs/editor/contrib/folding/browser/foldingDecorations.js +9 -9
  75. package/esm/vs/editor/contrib/fontZoom/browser/fontZoom.js +3 -3
  76. package/esm/vs/editor/contrib/format/browser/formatActions.js +2 -2
  77. package/esm/vs/editor/contrib/gotoError/browser/gotoError.js +8 -8
  78. package/esm/vs/editor/contrib/gotoError/browser/gotoErrorWidget.js +14 -14
  79. package/esm/vs/editor/contrib/gotoSymbol/browser/goToCommands.js +39 -39
  80. package/esm/vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition.js +1 -1
  81. package/esm/vs/editor/contrib/gotoSymbol/browser/peek/referencesController.js +3 -3
  82. package/esm/vs/editor/contrib/gotoSymbol/browser/peek/referencesTree.js +3 -3
  83. package/esm/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.js +3 -3
  84. package/esm/vs/editor/contrib/gotoSymbol/browser/referencesModel.js +8 -8
  85. package/esm/vs/editor/contrib/gotoSymbol/browser/symbolNavigation.js +3 -3
  86. package/esm/vs/editor/contrib/gpu/browser/gpuActions.js +4 -4
  87. package/esm/vs/editor/contrib/hover/browser/hoverActionIds.js +2 -2
  88. package/esm/vs/editor/contrib/hover/browser/hoverActions.js +24 -24
  89. package/esm/vs/editor/contrib/hover/browser/hoverCopyButton.js +2 -2
  90. package/esm/vs/editor/contrib/hover/browser/markdownHoverParticipant.js +9 -9
  91. package/esm/vs/editor/contrib/hover/browser/markerHoverParticipant.js +5 -5
  92. package/esm/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.js +2 -2
  93. package/esm/vs/editor/contrib/indentation/browser/indentation.js +20 -20
  94. package/esm/vs/editor/contrib/inlayHints/browser/inlayHintsHover.js +8 -8
  95. package/esm/vs/editor/contrib/inlineCompletions/browser/controller/commands.js +21 -21
  96. package/esm/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.js +13 -13
  97. package/esm/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.js +1 -1
  98. package/esm/vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant.js +2 -2
  99. package/esm/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.js +5 -5
  100. package/esm/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.js +1 -1
  101. package/esm/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.js.map +1 -1
  102. package/esm/vs/editor/contrib/inlineCompletions/browser/model/renameSymbolProcessor.js +4 -4
  103. package/esm/vs/editor/contrib/inlineCompletions/browser/model/renameSymbolProcessor.js.map +1 -1
  104. package/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.js +6 -6
  105. package/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.js +1 -1
  106. package/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsWordReplacementView.js +3 -3
  107. package/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme.js +20 -20
  108. package/esm/vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLine.js +1 -1
  109. package/esm/vs/editor/contrib/lineSelection/browser/lineSelection.js +1 -1
  110. package/esm/vs/editor/contrib/linesOperations/browser/linesOperations.js +31 -31
  111. package/esm/vs/editor/contrib/linkedEditing/browser/linkedEditing.js +2 -2
  112. package/esm/vs/editor/contrib/links/browser/links.js +10 -10
  113. package/esm/vs/editor/contrib/message/browser/messageController.js +1 -1
  114. package/esm/vs/editor/contrib/multicursor/browser/multicursor.js +22 -22
  115. package/esm/vs/editor/contrib/parameterHints/browser/parameterHints.js +1 -1
  116. package/esm/vs/editor/contrib/parameterHints/browser/parameterHintsWidget.js +4 -4
  117. package/esm/vs/editor/contrib/peekView/browser/peekView.js +18 -18
  118. package/esm/vs/editor/contrib/placeholderText/browser/placeholderText.contribution.js +1 -1
  119. package/esm/vs/editor/contrib/quickAccess/browser/gotoLineQuickAccess.js +25 -27
  120. package/esm/vs/editor/contrib/quickAccess/browser/gotoLineQuickAccess.js.map +1 -1
  121. package/esm/vs/editor/contrib/quickAccess/browser/gotoSymbolQuickAccess.js +32 -32
  122. package/esm/vs/editor/contrib/readOnlyMessage/browser/contribution.js +2 -2
  123. package/esm/vs/editor/contrib/rename/browser/rename.js +11 -11
  124. package/esm/vs/editor/contrib/rename/browser/renameWidget.js +7 -7
  125. package/esm/vs/editor/contrib/smartSelect/browser/smartSelect.js +4 -4
  126. package/esm/vs/editor/contrib/snippet/browser/snippetController2.js +4 -4
  127. package/esm/vs/editor/contrib/snippet/browser/snippetVariables.js +4 -4
  128. package/esm/vs/editor/contrib/stickyScroll/browser/stickyScrollActions.js +11 -11
  129. package/esm/vs/editor/contrib/suggest/browser/suggest.js +9 -9
  130. package/esm/vs/editor/contrib/suggest/browser/suggestController.js +11 -11
  131. package/esm/vs/editor/contrib/suggest/browser/suggestWidget.js +17 -17
  132. package/esm/vs/editor/contrib/suggest/browser/suggestWidgetDetails.js +2 -2
  133. package/esm/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.js +2 -2
  134. package/esm/vs/editor/contrib/suggest/browser/wordContextKey.js +1 -1
  135. package/esm/vs/editor/contrib/symbolIcons/browser/symbolIcons.js +33 -33
  136. package/esm/vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode.js +4 -4
  137. package/esm/vs/editor/contrib/tokenization/browser/tokenization.js +1 -1
  138. package/esm/vs/editor/contrib/unicodeHighlighter/browser/bannerController.js +1 -1
  139. package/esm/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.js +24 -24
  140. package/esm/vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators.js +5 -5
  141. package/esm/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.js +9 -9
  142. package/esm/vs/editor/contrib/wordHighlighter/browser/wordHighlighter.js +3 -3
  143. package/esm/vs/editor/contrib/wordOperations/browser/wordOperations.js +3 -3
  144. package/esm/vs/platform/accessibilitySignal/browser/accessibilitySignalService.js +62 -62
  145. package/esm/vs/platform/action/common/actionCommonCategories.js +6 -6
  146. package/esm/vs/platform/actionWidget/browser/actionList.js +4 -4
  147. package/esm/vs/platform/actionWidget/browser/actionWidget.js +7 -7
  148. package/esm/vs/platform/actions/browser/menuEntryActionViewItem.js +5 -5
  149. package/esm/vs/platform/actions/browser/toolbar.js +2 -2
  150. package/esm/vs/platform/actions/common/menuService.js +2 -2
  151. package/esm/vs/platform/configuration/common/configurationRegistry.js +10 -10
  152. package/esm/vs/platform/contextkey/browser/contextKeyService.js +1 -1
  153. package/esm/vs/platform/contextkey/common/contextkey.js +9 -9
  154. package/esm/vs/platform/contextkey/common/contextkeys.js +9 -9
  155. package/esm/vs/platform/contextkey/common/scanner.js +5 -5
  156. package/esm/vs/platform/history/browser/contextScopedHistoryWidget.js +1 -1
  157. package/esm/vs/platform/hover/browser/hoverWidget.js +1 -1
  158. package/esm/vs/platform/hover/browser/updatableHoverWidget.js +1 -1
  159. package/esm/vs/platform/keybinding/common/abstractKeybindingService.js +4 -4
  160. package/esm/vs/platform/list/browser/listService.js +27 -27
  161. package/esm/vs/platform/markers/common/markerService.js +2 -2
  162. package/esm/vs/platform/markers/common/markers.js +6 -6
  163. package/esm/vs/platform/quickinput/browser/commandsQuickAccess.js +8 -8
  164. package/esm/vs/platform/quickinput/browser/helpQuickAccess.js +1 -1
  165. package/esm/vs/platform/quickinput/browser/media/quickInput.css +38 -4
  166. package/esm/vs/platform/quickinput/browser/quickInput.js +42 -14
  167. package/esm/vs/platform/quickinput/browser/quickInput.js.map +1 -1
  168. package/esm/vs/platform/quickinput/browser/quickInputActions.js +5 -5
  169. package/esm/vs/platform/quickinput/browser/quickInputBox.js +13 -1
  170. package/esm/vs/platform/quickinput/browser/quickInputBox.js.map +1 -1
  171. package/esm/vs/platform/quickinput/browser/quickInputController.js +22 -12
  172. package/esm/vs/platform/quickinput/browser/quickInputController.js.map +1 -1
  173. package/esm/vs/platform/quickinput/browser/quickInputList.js +17 -12
  174. package/esm/vs/platform/quickinput/browser/quickInputList.js.map +1 -1
  175. package/esm/vs/platform/quickinput/browser/quickInputUtils.js +36 -8
  176. package/esm/vs/platform/quickinput/browser/quickInputUtils.js.map +1 -1
  177. package/esm/vs/platform/quickinput/browser/tree/quickInputTreeAccessibilityProvider.js +1 -1
  178. package/esm/vs/platform/quickinput/browser/tree/quickInputTreeController.js +3 -3
  179. package/esm/vs/platform/quickinput/browser/tree/quickInputTreeController.js.map +1 -1
  180. package/esm/vs/platform/quickinput/browser/tree/quickInputTreeRenderer.js +8 -4
  181. package/esm/vs/platform/quickinput/browser/tree/quickInputTreeRenderer.js.map +1 -1
  182. package/esm/vs/platform/quickinput/common/quickInput.js.map +1 -1
  183. package/esm/vs/platform/theme/common/colorUtils.js +2 -2
  184. package/esm/vs/platform/theme/common/colors/baseColors.js +18 -18
  185. package/esm/vs/platform/theme/common/colors/chartsColors.js +8 -8
  186. package/esm/vs/platform/theme/common/colors/editorColors.js +95 -95
  187. package/esm/vs/platform/theme/common/colors/inputColors.js +47 -47
  188. package/esm/vs/platform/theme/common/colors/listColors.js +36 -36
  189. package/esm/vs/platform/theme/common/colors/menuColors.js +7 -7
  190. package/esm/vs/platform/theme/common/colors/minimapColors.js +11 -11
  191. package/esm/vs/platform/theme/common/colors/miscColors.js +16 -16
  192. package/esm/vs/platform/theme/common/colors/quickpickColors.js +9 -9
  193. package/esm/vs/platform/theme/common/colors/searchColors.js +3 -3
  194. package/esm/vs/platform/theme/common/iconRegistry.js +6 -6
  195. package/esm/vs/platform/undoRedo/common/undoRedoService.js +20 -20
  196. package/esm/vs/platform/workspace/common/workspace.js +1 -1
  197. package/package.json +2 -2
@@ -9,15 +9,15 @@ import { registerColor, transparent } from '../colorUtils.js';
9
9
  // Import the colors we need
10
10
  import { editorFindMatchHighlight, editorInfoBorder, editorInfoForeground, editorSelectionBackground, editorSelectionHighlight, editorWarningBorder, editorWarningForeground } from './editorColors.js';
11
11
  import { scrollbarSliderActiveBackground, scrollbarSliderBackground, scrollbarSliderHoverBackground } from './miscColors.js';
12
- export const minimapFindMatch = registerColor('minimap.findMatchHighlight', editorFindMatchHighlight, nls.localize(2003, 'Minimap marker color for find matches.'), true);
13
- export const minimapSelectionOccurrenceHighlight = registerColor('minimap.selectionOccurrenceHighlight', editorSelectionHighlight, nls.localize(2004, 'Minimap marker color for repeating editor selections.'), true);
14
- export const minimapSelection = registerColor('minimap.selectionHighlight', editorSelectionBackground, nls.localize(2005, 'Minimap marker color for the editor selection.'), true);
15
- export const minimapInfo = registerColor('minimap.infoHighlight', { dark: editorInfoForeground, light: editorInfoForeground, hcDark: editorInfoBorder, hcLight: editorInfoBorder }, nls.localize(2006, 'Minimap marker color for infos.'));
16
- export const minimapWarning = registerColor('minimap.warningHighlight', { dark: editorWarningForeground, light: editorWarningForeground, hcDark: editorWarningBorder, hcLight: editorWarningBorder }, nls.localize(2007, 'Minimap marker color for warnings.'));
17
- export const minimapError = registerColor('minimap.errorHighlight', { dark: new Color(new RGBA(255, 18, 18, 0.7)), light: new Color(new RGBA(255, 18, 18, 0.7)), hcDark: new Color(new RGBA(255, 50, 50, 1)), hcLight: '#B5200D' }, nls.localize(2008, 'Minimap marker color for errors.'));
18
- export const minimapBackground = registerColor('minimap.background', null, nls.localize(2009, "Minimap background color."));
19
- export const minimapForegroundOpacity = registerColor('minimap.foregroundOpacity', Color.fromHex('#000f'), nls.localize(2010, 'Opacity of foreground elements rendered in the minimap. For example, "#000000c0" will render the elements with 75% opacity.'));
20
- export const minimapSliderBackground = registerColor('minimapSlider.background', transparent(scrollbarSliderBackground, 0.5), nls.localize(2011, "Minimap slider background color."));
21
- export const minimapSliderHoverBackground = registerColor('minimapSlider.hoverBackground', transparent(scrollbarSliderHoverBackground, 0.5), nls.localize(2012, "Minimap slider background color when hovering."));
22
- export const minimapSliderActiveBackground = registerColor('minimapSlider.activeBackground', transparent(scrollbarSliderActiveBackground, 0.5), nls.localize(2013, "Minimap slider background color when clicked on."));
12
+ export const minimapFindMatch = registerColor('minimap.findMatchHighlight', editorFindMatchHighlight, nls.localize(2005, 'Minimap marker color for find matches.'), true);
13
+ export const minimapSelectionOccurrenceHighlight = registerColor('minimap.selectionOccurrenceHighlight', editorSelectionHighlight, nls.localize(2006, 'Minimap marker color for repeating editor selections.'), true);
14
+ export const minimapSelection = registerColor('minimap.selectionHighlight', editorSelectionBackground, nls.localize(2007, 'Minimap marker color for the editor selection.'), true);
15
+ export const minimapInfo = registerColor('minimap.infoHighlight', { dark: editorInfoForeground, light: editorInfoForeground, hcDark: editorInfoBorder, hcLight: editorInfoBorder }, nls.localize(2008, 'Minimap marker color for infos.'));
16
+ export const minimapWarning = registerColor('minimap.warningHighlight', { dark: editorWarningForeground, light: editorWarningForeground, hcDark: editorWarningBorder, hcLight: editorWarningBorder }, nls.localize(2009, 'Minimap marker color for warnings.'));
17
+ export const minimapError = registerColor('minimap.errorHighlight', { dark: new Color(new RGBA(255, 18, 18, 0.7)), light: new Color(new RGBA(255, 18, 18, 0.7)), hcDark: new Color(new RGBA(255, 50, 50, 1)), hcLight: '#B5200D' }, nls.localize(2010, 'Minimap marker color for errors.'));
18
+ export const minimapBackground = registerColor('minimap.background', null, nls.localize(2011, "Minimap background color."));
19
+ export const minimapForegroundOpacity = registerColor('minimap.foregroundOpacity', Color.fromHex('#000f'), nls.localize(2012, 'Opacity of foreground elements rendered in the minimap. For example, "#000000c0" will render the elements with 75% opacity.'));
20
+ export const minimapSliderBackground = registerColor('minimapSlider.background', transparent(scrollbarSliderBackground, 0.5), nls.localize(2013, "Minimap slider background color."));
21
+ export const minimapSliderHoverBackground = registerColor('minimapSlider.hoverBackground', transparent(scrollbarSliderHoverBackground, 0.5), nls.localize(2014, "Minimap slider background color when hovering."));
22
+ export const minimapSliderActiveBackground = registerColor('minimapSlider.activeBackground', transparent(scrollbarSliderActiveBackground, 0.5), nls.localize(2015, "Minimap slider background color when clicked on."));
23
23
  //# sourceMappingURL=minimapColors.js.map
@@ -9,24 +9,24 @@ import { registerColor, transparent } from '../colorUtils.js';
9
9
  // Import the colors we need
10
10
  import { contrastBorder, focusBorder } from './baseColors.js';
11
11
  // ----- sash
12
- export const sashHoverBorder = registerColor('sash.hoverBorder', focusBorder, nls.localize(2014, "Border color of active sashes."));
12
+ export const sashHoverBorder = registerColor('sash.hoverBorder', focusBorder, nls.localize(2016, "Border color of active sashes."));
13
13
  // ----- badge
14
- export const badgeBackground = registerColor('badge.background', { dark: '#4D4D4D', light: '#C4C4C4', hcDark: Color.black, hcLight: '#0F4A85' }, nls.localize(2015, "Badge background color. Badges are small information labels, e.g. for search results count."));
15
- export const badgeForeground = registerColor('badge.foreground', { dark: Color.white, light: '#333', hcDark: Color.white, hcLight: Color.white }, nls.localize(2016, "Badge foreground color. Badges are small information labels, e.g. for search results count."));
16
- export const activityWarningBadgeForeground = registerColor('activityWarningBadge.foreground', { dark: Color.white, light: Color.white, hcDark: Color.white, hcLight: Color.white }, nls.localize(2017, 'Foreground color of the warning activity badge'));
17
- export const activityWarningBadgeBackground = registerColor('activityWarningBadge.background', { dark: '#B27C00', light: '#B27C00', hcDark: null, hcLight: '#B27C00' }, nls.localize(2018, 'Background color of the warning activity badge'));
18
- export const activityErrorBadgeForeground = registerColor('activityErrorBadge.foreground', { dark: Color.black.lighten(0.2), light: Color.white, hcDark: null, hcLight: Color.black.lighten(0.2) }, nls.localize(2019, 'Foreground color of the error activity badge'));
19
- export const activityErrorBadgeBackground = registerColor('activityErrorBadge.background', { dark: '#F14C4C', light: '#E51400', hcDark: null, hcLight: '#F14C4C' }, nls.localize(2020, 'Background color of the error activity badge'));
14
+ export const badgeBackground = registerColor('badge.background', { dark: '#4D4D4D', light: '#C4C4C4', hcDark: Color.black, hcLight: '#0F4A85' }, nls.localize(2017, "Badge background color. Badges are small information labels, e.g. for search results count."));
15
+ export const badgeForeground = registerColor('badge.foreground', { dark: Color.white, light: '#333', hcDark: Color.white, hcLight: Color.white }, nls.localize(2018, "Badge foreground color. Badges are small information labels, e.g. for search results count."));
16
+ export const activityWarningBadgeForeground = registerColor('activityWarningBadge.foreground', { dark: Color.white, light: Color.white, hcDark: Color.white, hcLight: Color.white }, nls.localize(2019, 'Foreground color of the warning activity badge'));
17
+ export const activityWarningBadgeBackground = registerColor('activityWarningBadge.background', { dark: '#B27C00', light: '#B27C00', hcDark: null, hcLight: '#B27C00' }, nls.localize(2020, 'Background color of the warning activity badge'));
18
+ export const activityErrorBadgeForeground = registerColor('activityErrorBadge.foreground', { dark: Color.black.lighten(0.2), light: Color.white, hcDark: null, hcLight: Color.black.lighten(0.2) }, nls.localize(2021, 'Foreground color of the error activity badge'));
19
+ export const activityErrorBadgeBackground = registerColor('activityErrorBadge.background', { dark: '#F14C4C', light: '#E51400', hcDark: null, hcLight: '#F14C4C' }, nls.localize(2022, 'Background color of the error activity badge'));
20
20
  // ----- scrollbar
21
- export const scrollbarShadow = registerColor('scrollbar.shadow', { dark: '#000000', light: '#DDDDDD', hcDark: null, hcLight: null }, nls.localize(2021, "Scrollbar shadow to indicate that the view is scrolled."));
22
- export const scrollbarSliderBackground = registerColor('scrollbarSlider.background', { dark: Color.fromHex('#797979').transparent(0.4), light: Color.fromHex('#646464').transparent(0.4), hcDark: transparent(contrastBorder, 0.6), hcLight: transparent(contrastBorder, 0.4) }, nls.localize(2022, "Scrollbar slider background color."));
23
- export const scrollbarSliderHoverBackground = registerColor('scrollbarSlider.hoverBackground', { dark: Color.fromHex('#646464').transparent(0.7), light: Color.fromHex('#646464').transparent(0.7), hcDark: transparent(contrastBorder, 0.8), hcLight: transparent(contrastBorder, 0.8) }, nls.localize(2023, "Scrollbar slider background color when hovering."));
24
- export const scrollbarSliderActiveBackground = registerColor('scrollbarSlider.activeBackground', { dark: Color.fromHex('#BFBFBF').transparent(0.4), light: Color.fromHex('#000000').transparent(0.6), hcDark: contrastBorder, hcLight: contrastBorder }, nls.localize(2024, "Scrollbar slider background color when clicked on."));
25
- export const scrollbarBackground = registerColor('scrollbar.background', null, nls.localize(2025, "Scrollbar track background color."));
21
+ export const scrollbarShadow = registerColor('scrollbar.shadow', { dark: '#000000', light: '#DDDDDD', hcDark: null, hcLight: null }, nls.localize(2023, "Scrollbar shadow to indicate that the view is scrolled."));
22
+ export const scrollbarSliderBackground = registerColor('scrollbarSlider.background', { dark: Color.fromHex('#797979').transparent(0.4), light: Color.fromHex('#646464').transparent(0.4), hcDark: transparent(contrastBorder, 0.6), hcLight: transparent(contrastBorder, 0.4) }, nls.localize(2024, "Scrollbar slider background color."));
23
+ export const scrollbarSliderHoverBackground = registerColor('scrollbarSlider.hoverBackground', { dark: Color.fromHex('#646464').transparent(0.7), light: Color.fromHex('#646464').transparent(0.7), hcDark: transparent(contrastBorder, 0.8), hcLight: transparent(contrastBorder, 0.8) }, nls.localize(2025, "Scrollbar slider background color when hovering."));
24
+ export const scrollbarSliderActiveBackground = registerColor('scrollbarSlider.activeBackground', { dark: Color.fromHex('#BFBFBF').transparent(0.4), light: Color.fromHex('#000000').transparent(0.6), hcDark: contrastBorder, hcLight: contrastBorder }, nls.localize(2026, "Scrollbar slider background color when clicked on."));
25
+ export const scrollbarBackground = registerColor('scrollbar.background', null, nls.localize(2027, "Scrollbar track background color."));
26
26
  // ----- progress bar
27
- export const progressBarBackground = registerColor('progressBar.background', { dark: Color.fromHex('#0E70C0'), light: Color.fromHex('#0E70C0'), hcDark: contrastBorder, hcLight: contrastBorder }, nls.localize(2026, "Background color of the progress bar that can show for long running operations."));
27
+ export const progressBarBackground = registerColor('progressBar.background', { dark: Color.fromHex('#0E70C0'), light: Color.fromHex('#0E70C0'), hcDark: contrastBorder, hcLight: contrastBorder }, nls.localize(2028, "Background color of the progress bar that can show for long running operations."));
28
28
  // ----- chart
29
- export const chartLine = registerColor('chart.line', { dark: '#236B8E', light: '#236B8E', hcDark: '#236B8E', hcLight: '#236B8E' }, nls.localize(2027, "Line color for the chart."));
30
- export const chartAxis = registerColor('chart.axis', { dark: Color.fromHex('#BFBFBF').transparent(0.4), light: Color.fromHex('#000000').transparent(0.6), hcDark: contrastBorder, hcLight: contrastBorder }, nls.localize(2028, "Axis color for the chart."));
31
- export const chartGuide = registerColor('chart.guide', { dark: Color.fromHex('#BFBFBF').transparent(0.2), light: Color.fromHex('#000000').transparent(0.2), hcDark: contrastBorder, hcLight: contrastBorder }, nls.localize(2029, "Guide line for the chart."));
29
+ export const chartLine = registerColor('chart.line', { dark: '#236B8E', light: '#236B8E', hcDark: '#236B8E', hcLight: '#236B8E' }, nls.localize(2029, "Line color for the chart."));
30
+ export const chartAxis = registerColor('chart.axis', { dark: Color.fromHex('#BFBFBF').transparent(0.4), light: Color.fromHex('#000000').transparent(0.6), hcDark: contrastBorder, hcLight: contrastBorder }, nls.localize(2030, "Axis color for the chart."));
31
+ export const chartGuide = registerColor('chart.guide', { dark: Color.fromHex('#BFBFBF').transparent(0.2), light: Color.fromHex('#000000').transparent(0.2), hcDark: contrastBorder, hcLight: contrastBorder }, nls.localize(2031, "Guide line for the chart."));
32
32
  //# sourceMappingURL=miscColors.js.map
@@ -9,13 +9,13 @@ import { registerColor, oneOf } from '../colorUtils.js';
9
9
  // Import the colors we need
10
10
  import { editorWidgetBackground, editorWidgetForeground } from './editorColors.js';
11
11
  import { listActiveSelectionBackground, listActiveSelectionForeground, listActiveSelectionIconForeground } from './listColors.js';
12
- export const quickInputBackground = registerColor('quickInput.background', editorWidgetBackground, nls.localize(2030, "Quick picker background color. The quick picker widget is the container for pickers like the command palette."));
13
- export const quickInputForeground = registerColor('quickInput.foreground', editorWidgetForeground, nls.localize(2031, "Quick picker foreground color. The quick picker widget is the container for pickers like the command palette."));
14
- export const quickInputTitleBackground = registerColor('quickInputTitle.background', { dark: new Color(new RGBA(255, 255, 255, 0.105)), light: new Color(new RGBA(0, 0, 0, 0.06)), hcDark: '#000000', hcLight: Color.white }, nls.localize(2032, "Quick picker title background color. The quick picker widget is the container for pickers like the command palette."));
15
- export const pickerGroupForeground = registerColor('pickerGroup.foreground', { dark: '#3794FF', light: '#0066BF', hcDark: Color.white, hcLight: '#0F4A85' }, nls.localize(2033, "Quick picker color for grouping labels."));
16
- export const pickerGroupBorder = registerColor('pickerGroup.border', { dark: '#3F3F46', light: '#CCCEDB', hcDark: Color.white, hcLight: '#0F4A85' }, nls.localize(2034, "Quick picker color for grouping borders."));
17
- export const _deprecatedQuickInputListFocusBackground = registerColor('quickInput.list.focusBackground', null, '', undefined, nls.localize(2035, "Please use quickInputList.focusBackground instead"));
18
- export const quickInputListFocusForeground = registerColor('quickInputList.focusForeground', listActiveSelectionForeground, nls.localize(2036, "Quick picker foreground color for the focused item."));
19
- export const quickInputListFocusIconForeground = registerColor('quickInputList.focusIconForeground', listActiveSelectionIconForeground, nls.localize(2037, "Quick picker icon foreground color for the focused item."));
20
- export const quickInputListFocusBackground = registerColor('quickInputList.focusBackground', { dark: oneOf(_deprecatedQuickInputListFocusBackground, listActiveSelectionBackground), light: oneOf(_deprecatedQuickInputListFocusBackground, listActiveSelectionBackground), hcDark: null, hcLight: null }, nls.localize(2038, "Quick picker background color for the focused item."));
12
+ export const quickInputBackground = registerColor('quickInput.background', editorWidgetBackground, nls.localize(2032, "Quick picker background color. The quick picker widget is the container for pickers like the command palette."));
13
+ export const quickInputForeground = registerColor('quickInput.foreground', editorWidgetForeground, nls.localize(2033, "Quick picker foreground color. The quick picker widget is the container for pickers like the command palette."));
14
+ export const quickInputTitleBackground = registerColor('quickInputTitle.background', { dark: new Color(new RGBA(255, 255, 255, 0.105)), light: new Color(new RGBA(0, 0, 0, 0.06)), hcDark: '#000000', hcLight: Color.white }, nls.localize(2034, "Quick picker title background color. The quick picker widget is the container for pickers like the command palette."));
15
+ export const pickerGroupForeground = registerColor('pickerGroup.foreground', { dark: '#3794FF', light: '#0066BF', hcDark: Color.white, hcLight: '#0F4A85' }, nls.localize(2035, "Quick picker color for grouping labels."));
16
+ export const pickerGroupBorder = registerColor('pickerGroup.border', { dark: '#3F3F46', light: '#CCCEDB', hcDark: Color.white, hcLight: '#0F4A85' }, nls.localize(2036, "Quick picker color for grouping borders."));
17
+ export const _deprecatedQuickInputListFocusBackground = registerColor('quickInput.list.focusBackground', null, '', undefined, nls.localize(2037, "Please use quickInputList.focusBackground instead"));
18
+ export const quickInputListFocusForeground = registerColor('quickInputList.focusForeground', listActiveSelectionForeground, nls.localize(2038, "Quick picker foreground color for the focused item."));
19
+ export const quickInputListFocusIconForeground = registerColor('quickInputList.focusIconForeground', listActiveSelectionIconForeground, nls.localize(2039, "Quick picker icon foreground color for the focused item."));
20
+ export const quickInputListFocusBackground = registerColor('quickInputList.focusBackground', { dark: oneOf(_deprecatedQuickInputListFocusBackground, listActiveSelectionBackground), light: oneOf(_deprecatedQuickInputListFocusBackground, listActiveSelectionBackground), hcDark: null, hcLight: null }, nls.localize(2040, "Quick picker background color for the focused item."));
21
21
  //# sourceMappingURL=quickpickColors.js.map
@@ -8,8 +8,8 @@ import { registerColor, transparent } from '../colorUtils.js';
8
8
  // Import the colors we need
9
9
  import { foreground } from './baseColors.js';
10
10
  import { editorFindMatchHighlight, editorFindMatchHighlightBorder } from './editorColors.js';
11
- export const searchResultsInfoForeground = registerColor('search.resultsInfoForeground', { light: foreground, dark: transparent(foreground, 0.65), hcDark: foreground, hcLight: foreground }, nls.localize(2039, "Color of the text in the search viewlet's completion message."));
11
+ export const searchResultsInfoForeground = registerColor('search.resultsInfoForeground', { light: foreground, dark: transparent(foreground, 0.65), hcDark: foreground, hcLight: foreground }, nls.localize(2041, "Color of the text in the search viewlet's completion message."));
12
12
  // ----- search editor (Distinct from normal editor find match to allow for better differentiation)
13
- export const searchEditorFindMatch = registerColor('searchEditor.findMatchBackground', { light: transparent(editorFindMatchHighlight, 0.66), dark: transparent(editorFindMatchHighlight, 0.66), hcDark: editorFindMatchHighlight, hcLight: editorFindMatchHighlight }, nls.localize(2040, "Color of the Search Editor query matches."));
14
- export const searchEditorFindMatchBorder = registerColor('searchEditor.findMatchBorder', { light: transparent(editorFindMatchHighlightBorder, 0.66), dark: transparent(editorFindMatchHighlightBorder, 0.66), hcDark: editorFindMatchHighlightBorder, hcLight: editorFindMatchHighlightBorder }, nls.localize(2041, "Border color of the Search Editor query matches."));
13
+ export const searchEditorFindMatch = registerColor('searchEditor.findMatchBackground', { light: transparent(editorFindMatchHighlight, 0.66), dark: transparent(editorFindMatchHighlight, 0.66), hcDark: editorFindMatchHighlight, hcLight: editorFindMatchHighlight }, nls.localize(2042, "Color of the Search Editor query matches."));
14
+ export const searchEditorFindMatchBorder = registerColor('searchEditor.findMatchBorder', { light: transparent(editorFindMatchHighlightBorder, 0.66), dark: transparent(editorFindMatchHighlightBorder, 0.66), hcDark: editorFindMatchHighlightBorder, hcLight: editorFindMatchHighlightBorder }, nls.localize(2043, "Border color of the Search Editor query matches."));
15
15
  //# sourceMappingURL=searchColors.js.map
@@ -58,7 +58,7 @@ export var IconFontDefinition;
58
58
  })(IconFontDefinition || (IconFontDefinition = {}));
59
59
  // regexes for validation of font properties
60
60
  export const fontIdRegex = /^([\w_-]+)$/;
61
- export const fontIdErrorMessage = localize(2044, 'The font ID must only contain letters, numbers, underscores and dashes.');
61
+ export const fontIdErrorMessage = localize(2046, 'The font ID must only contain letters, numbers, underscores and dashes.');
62
62
  class IconRegistry extends Disposable {
63
63
  constructor() {
64
64
  super();
@@ -69,8 +69,8 @@ class IconRegistry extends Disposable {
69
69
  icons: {
70
70
  type: 'object',
71
71
  properties: {
72
- fontId: { type: 'string', description: localize(2045, 'The id of the font to use. If not set, the font that is defined first is used.'), pattern: fontIdRegex.source, patternErrorMessage: fontIdErrorMessage },
73
- fontCharacter: { type: 'string', description: localize(2046, 'The font character associated with the icon definition.') }
72
+ fontId: { type: 'string', description: localize(2047, 'The id of the font to use. If not set, the font that is defined first is used.'), pattern: fontIdRegex.source, patternErrorMessage: fontIdErrorMessage },
73
+ fontCharacter: { type: 'string', description: localize(2048, 'The font character associated with the icon definition.') }
74
74
  },
75
75
  additionalProperties: false,
76
76
  defaultSnippets: [{ body: { fontCharacter: '\\\\e030' } }]
@@ -173,9 +173,9 @@ iconRegistry.onDidChange(() => {
173
173
  });
174
174
  //setTimeout(_ => console.log(iconRegistry.toString()), 5000);
175
175
  // common icons
176
- export const widgetClose = registerIcon('widget-close', Codicon.close, localize(2047, 'Icon for the close action in widgets.'));
177
- export const gotoPreviousLocation = registerIcon('goto-previous-location', Codicon.arrowUp, localize(2048, 'Icon for goto previous editor location.'));
178
- export const gotoNextLocation = registerIcon('goto-next-location', Codicon.arrowDown, localize(2049, 'Icon for goto next editor location.'));
176
+ export const widgetClose = registerIcon('widget-close', Codicon.close, localize(2049, 'Icon for the close action in widgets.'));
177
+ export const gotoPreviousLocation = registerIcon('goto-previous-location', Codicon.arrowUp, localize(2050, 'Icon for goto previous editor location.'));
178
+ export const gotoNextLocation = registerIcon('goto-next-location', Codicon.arrowDown, localize(2051, 'Icon for goto next editor location.'));
179
179
  export const syncing = ThemeIcon.modify(Codicon.sync, 'spin');
180
180
  export const spinningLoading = ThemeIcon.modify(Codicon.loading, 'spin');
181
181
  //# sourceMappingURL=iconRegistry.js.map
@@ -70,10 +70,10 @@ class RemovedResources {
70
70
  }
71
71
  const messages = [];
72
72
  if (externalRemoval.length > 0) {
73
- messages.push(nls.localize(2050, "The following files have been closed and modified on disk: {0}.", externalRemoval.join(', ')));
73
+ messages.push(nls.localize(2052, "The following files have been closed and modified on disk: {0}.", externalRemoval.join(', ')));
74
74
  }
75
75
  if (noParallelUniverses.length > 0) {
76
- messages.push(nls.localize(2051, "The following files have been modified in an incompatible way: {0}.", noParallelUniverses.join(', ')));
76
+ messages.push(nls.localize(2053, "The following files have been modified in an incompatible way: {0}.", noParallelUniverses.join(', ')));
77
77
  }
78
78
  return messages.join('\n');
79
79
  }
@@ -657,10 +657,10 @@ let UndoRedoService = class UndoRedoService {
657
657
  }
658
658
  _checkWorkspaceUndo(strResource, element, editStackSnapshot, checkInvalidatedResources) {
659
659
  if (element.removedResources) {
660
- return this._tryToSplitAndUndo(strResource, element, element.removedResources, nls.localize(2052, "Could not undo '{0}' across all files. {1}", element.label, element.removedResources.createMessage()));
660
+ return this._tryToSplitAndUndo(strResource, element, element.removedResources, nls.localize(2054, "Could not undo '{0}' across all files. {1}", element.label, element.removedResources.createMessage()));
661
661
  }
662
662
  if (checkInvalidatedResources && element.invalidatedResources) {
663
- return this._tryToSplitAndUndo(strResource, element, element.invalidatedResources, nls.localize(2053, "Could not undo '{0}' across all files. {1}", element.label, element.invalidatedResources.createMessage()));
663
+ return this._tryToSplitAndUndo(strResource, element, element.invalidatedResources, nls.localize(2055, "Could not undo '{0}' across all files. {1}", element.label, element.invalidatedResources.createMessage()));
664
664
  }
665
665
  // this must be the last past element in all the impacted resources!
666
666
  const cannotUndoDueToResources = [];
@@ -670,7 +670,7 @@ let UndoRedoService = class UndoRedoService {
670
670
  }
671
671
  }
672
672
  if (cannotUndoDueToResources.length > 0) {
673
- return this._tryToSplitAndUndo(strResource, element, null, nls.localize(2054, "Could not undo '{0}' across all files because changes were made to {1}", element.label, cannotUndoDueToResources.join(', ')));
673
+ return this._tryToSplitAndUndo(strResource, element, null, nls.localize(2056, "Could not undo '{0}' across all files because changes were made to {1}", element.label, cannotUndoDueToResources.join(', ')));
674
674
  }
675
675
  const cannotLockDueToResources = [];
676
676
  for (const editStack of editStackSnapshot.editStacks) {
@@ -679,11 +679,11 @@ let UndoRedoService = class UndoRedoService {
679
679
  }
680
680
  }
681
681
  if (cannotLockDueToResources.length > 0) {
682
- return this._tryToSplitAndUndo(strResource, element, null, nls.localize(2055, "Could not undo '{0}' across all files because there is already an undo or redo operation running on {1}", element.label, cannotLockDueToResources.join(', ')));
682
+ return this._tryToSplitAndUndo(strResource, element, null, nls.localize(2057, "Could not undo '{0}' across all files because there is already an undo or redo operation running on {1}", element.label, cannotLockDueToResources.join(', ')));
683
683
  }
684
684
  // check if new stack elements were added in the meantime...
685
685
  if (!editStackSnapshot.isValid()) {
686
- return this._tryToSplitAndUndo(strResource, element, null, nls.localize(2056, "Could not undo '{0}' across all files because an undo or redo operation occurred in the meantime", element.label));
686
+ return this._tryToSplitAndUndo(strResource, element, null, nls.localize(2058, "Could not undo '{0}' across all files because an undo or redo operation occurred in the meantime", element.label));
687
687
  }
688
688
  return null;
689
689
  }
@@ -730,14 +730,14 @@ let UndoRedoService = class UndoRedoService {
730
730
  })(UndoChoice || (UndoChoice = {}));
731
731
  const { result } = await this._dialogService.prompt({
732
732
  type: Severity.Info,
733
- message: nls.localize(2057, "Would you like to undo '{0}' across all files?", element.label),
733
+ message: nls.localize(2059, "Would you like to undo '{0}' across all files?", element.label),
734
734
  buttons: [
735
735
  {
736
- label: nls.localize(2058, "&&Undo in {0} Files", editStackSnapshot.editStacks.length),
736
+ label: nls.localize(2060, "&&Undo in {0} Files", editStackSnapshot.editStacks.length),
737
737
  run: () => UndoChoice.All
738
738
  },
739
739
  {
740
- label: nls.localize(2059, "Undo this &&File"),
740
+ label: nls.localize(2061, "Undo this &&File"),
741
741
  run: () => UndoChoice.This
742
742
  }
743
743
  ],
@@ -788,7 +788,7 @@ let UndoRedoService = class UndoRedoService {
788
788
  return;
789
789
  }
790
790
  if (editStack.locked) {
791
- const message = nls.localize(2060, "Could not undo '{0}' because there is already an undo or redo operation running.", element.label);
791
+ const message = nls.localize(2062, "Could not undo '{0}' because there is already an undo or redo operation running.", element.label);
792
792
  this._notificationService.warn(message);
793
793
  return;
794
794
  }
@@ -875,9 +875,9 @@ let UndoRedoService = class UndoRedoService {
875
875
  }
876
876
  async _confirmAndContinueUndo(strResource, sourceId, element) {
877
877
  const result = await this._dialogService.confirm({
878
- message: nls.localize(2061, "Would you like to undo '{0}'?", element.label),
879
- primaryButton: nls.localize(2062, "&&Yes"),
880
- cancelButton: nls.localize(2063, "No")
878
+ message: nls.localize(2063, "Would you like to undo '{0}'?", element.label),
879
+ primaryButton: nls.localize(2064, "&&Yes"),
880
+ cancelButton: nls.localize(2065, "No")
881
881
  });
882
882
  if (!result.confirmed) {
883
883
  return;
@@ -934,10 +934,10 @@ let UndoRedoService = class UndoRedoService {
934
934
  }
935
935
  _checkWorkspaceRedo(strResource, element, editStackSnapshot, checkInvalidatedResources) {
936
936
  if (element.removedResources) {
937
- return this._tryToSplitAndRedo(strResource, element, element.removedResources, nls.localize(2064, "Could not redo '{0}' across all files. {1}", element.label, element.removedResources.createMessage()));
937
+ return this._tryToSplitAndRedo(strResource, element, element.removedResources, nls.localize(2066, "Could not redo '{0}' across all files. {1}", element.label, element.removedResources.createMessage()));
938
938
  }
939
939
  if (checkInvalidatedResources && element.invalidatedResources) {
940
- return this._tryToSplitAndRedo(strResource, element, element.invalidatedResources, nls.localize(2065, "Could not redo '{0}' across all files. {1}", element.label, element.invalidatedResources.createMessage()));
940
+ return this._tryToSplitAndRedo(strResource, element, element.invalidatedResources, nls.localize(2067, "Could not redo '{0}' across all files. {1}", element.label, element.invalidatedResources.createMessage()));
941
941
  }
942
942
  // this must be the last future element in all the impacted resources!
943
943
  const cannotRedoDueToResources = [];
@@ -947,7 +947,7 @@ let UndoRedoService = class UndoRedoService {
947
947
  }
948
948
  }
949
949
  if (cannotRedoDueToResources.length > 0) {
950
- return this._tryToSplitAndRedo(strResource, element, null, nls.localize(2066, "Could not redo '{0}' across all files because changes were made to {1}", element.label, cannotRedoDueToResources.join(', ')));
950
+ return this._tryToSplitAndRedo(strResource, element, null, nls.localize(2068, "Could not redo '{0}' across all files because changes were made to {1}", element.label, cannotRedoDueToResources.join(', ')));
951
951
  }
952
952
  const cannotLockDueToResources = [];
953
953
  for (const editStack of editStackSnapshot.editStacks) {
@@ -956,11 +956,11 @@ let UndoRedoService = class UndoRedoService {
956
956
  }
957
957
  }
958
958
  if (cannotLockDueToResources.length > 0) {
959
- return this._tryToSplitAndRedo(strResource, element, null, nls.localize(2067, "Could not redo '{0}' across all files because there is already an undo or redo operation running on {1}", element.label, cannotLockDueToResources.join(', ')));
959
+ return this._tryToSplitAndRedo(strResource, element, null, nls.localize(2069, "Could not redo '{0}' across all files because there is already an undo or redo operation running on {1}", element.label, cannotLockDueToResources.join(', ')));
960
960
  }
961
961
  // check if new stack elements were added in the meantime...
962
962
  if (!editStackSnapshot.isValid()) {
963
- return this._tryToSplitAndRedo(strResource, element, null, nls.localize(2068, "Could not redo '{0}' across all files because an undo or redo operation occurred in the meantime", element.label));
963
+ return this._tryToSplitAndRedo(strResource, element, null, nls.localize(2070, "Could not redo '{0}' across all files because an undo or redo operation occurred in the meantime", element.label));
964
964
  }
965
965
  return null;
966
966
  }
@@ -999,7 +999,7 @@ let UndoRedoService = class UndoRedoService {
999
999
  return;
1000
1000
  }
1001
1001
  if (editStack.locked) {
1002
- const message = nls.localize(2069, "Could not redo '{0}' because there is already an undo or redo operation running.", element.label);
1002
+ const message = nls.localize(2071, "Could not redo '{0}' because there is already an undo or redo operation running.", element.label);
1003
1003
  this._notificationService.warn(message);
1004
1004
  return;
1005
1005
  }
@@ -123,7 +123,7 @@ export class WorkspaceFolder {
123
123
  }
124
124
  }
125
125
  export const WORKSPACE_EXTENSION = 'code-workspace';
126
- export const WORKSPACE_FILTER = [{ name: localize(2070, "Code Workspace"), extensions: [WORKSPACE_EXTENSION] }];
126
+ export const WORKSPACE_FILTER = [{ name: localize(2072, "Code Workspace"), extensions: [WORKSPACE_EXTENSION] }];
127
127
  export const STANDALONE_EDITOR_WORKSPACE_ID = '4064f6ec-cb38-4ad0-af64-ee6467e63c82';
128
128
  export function isStandaloneEditorWorkspace(workspace) {
129
129
  return workspace.id === STANDALONE_EDITOR_WORKSPACE_ID;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "monaco-editor-core",
3
3
  "private": false,
4
- "version": "0.56.0-dev-20251217",
4
+ "version": "0.56.0-dev-20251219",
5
5
  "description": "A browser based code editor",
6
6
  "author": "Microsoft Corporation",
7
7
  "license": "MIT",
@@ -14,7 +14,7 @@
14
14
  "bugs": {
15
15
  "url": "https://github.com/microsoft/vscode/issues"
16
16
  },
17
- "vscodeCommitId": "a09b411ca6f2757426f7202c60b3ac55df9d760d",
17
+ "vscodeCommitId": "d6e971b2dfa6be5861887d7da6796a4075c42fa9",
18
18
  "dependencies": {
19
19
  "marked": "14.0.0",
20
20
  "dompurify": "3.2.7"