diff --git a/extensions/markdown-language-features/package.nls.json b/extensions/markdown-language-features/package.nls.json index d9879778767c7dcc1d76364a9ef4b870af076c9e..ca3d7226f58e007b11bdad687c4f892d1d0ac385 100644 --- a/extensions/markdown-language-features/package.nls.json +++ b/extensions/markdown-language-features/package.nls.json @@ -24,5 +24,5 @@ "markdown.preview.toggleLock.title": "Toggle Preview Locking", "configuration.markdown.preview.openMarkdownLinks.description": "How should clicking on links to markdown files be handled in the preview.", "configuration.markdown.preview.openMarkdownLinks.inEditor": "Try to open links in the editor", - "configuration.markdown.preview.openMarkdownLinks.inPreview": "Try to open links in the the markdown preview" + "configuration.markdown.preview.openMarkdownLinks.inPreview": "Try to open links in the markdown preview" } \ No newline at end of file diff --git a/src/typings/node.d.ts b/src/typings/node.d.ts index c597abdda9028663a5326e482a8a773b3da2092c..d708e5c725948df765ad18e48afd3765caf84cfb 100644 --- a/src/typings/node.d.ts +++ b/src/typings/node.d.ts @@ -7155,11 +7155,11 @@ declare module "perf_hooks" { * A PerformanceMeasure is a subclass of PerformanceEntry whose performanceEntry.entryType is always 'measure', * and whose performanceEntry.duration measures the number of milliseconds elapsed since startMark and endMark. * - * The startMark argument may identify any existing PerformanceMark in the the Performance Timeline, or may identify + * The startMark argument may identify any existing PerformanceMark in the Performance Timeline, or may identify * any of the timestamp properties provided by the PerformanceNodeTiming class. If the named startMark does not exist, * then startMark is set to timeOrigin by default. * - * The endMark argument must identify any existing PerformanceMark in the the Performance Timeline or any of the timestamp + * The endMark argument must identify any existing PerformanceMark in the Performance Timeline or any of the timestamp * properties provided by the PerformanceNodeTiming class. If the named endMark does not exist, an error will be thrown. * @param name * @param startMark diff --git a/src/vs/vscode.d.ts b/src/vs/vscode.d.ts index eaeeed1de13008d21273fb3bdbfe31301499dc4e..88bfb6a90e1228fe73aec8ef82a084dd5df6f2d7 100644 --- a/src/vs/vscode.d.ts +++ b/src/vs/vscode.d.ts @@ -3790,7 +3790,7 @@ declare module 'vscode' { /** * This property is deprecated and not fully supported anymore by * the editor (scope and lineStart are ignored). - * Use the the autoClosingPairs property in the language configuration file instead. + * Use the autoClosingPairs property in the language configuration file instead. * @deprecated */ docComment?: { @@ -3804,7 +3804,7 @@ declare module 'vscode' { /** * **Deprecated** Do not use. * - * @deprecated * Use the the autoClosingPairs property in the language configuration file instead. + * @deprecated * Use the autoClosingPairs property in the language configuration file instead. */ __characterPairSupport?: { autoClosingPairs: { diff --git a/src/vs/workbench/api/electron-browser/mainThreadDocumentsAndEditors.ts b/src/vs/workbench/api/electron-browser/mainThreadDocumentsAndEditors.ts index a24ab7f3ad3c117d6c8fedf9aa3d76402715c099..fd1da540e92350647bae1c67f2198be0ffb50c63 100644 --- a/src/vs/workbench/api/electron-browser/mainThreadDocumentsAndEditors.ts +++ b/src/vs/workbench/api/electron-browser/mainThreadDocumentsAndEditors.ts @@ -271,7 +271,7 @@ class MainThreadDocumentAndEditorStateComputer { } // active editor: if none of the previous editors had focus we try - // to match output panels or the the active workbench editor with + // to match output panels or the active workbench editor with // one of editor we have just computed if (!activeEditor) { let candidate: IEditor; diff --git a/src/vs/workbench/browser/parts/editor/breadcrumbsControl.ts b/src/vs/workbench/browser/parts/editor/breadcrumbsControl.ts index 9c9613a1867c0260b658ba02cea61080419186f2..07c1dbfa5ecc573750755b00b9bafc1d0f2b0865 100644 --- a/src/vs/workbench/browser/parts/editor/breadcrumbsControl.ts +++ b/src/vs/workbench/browser/parts/editor/breadcrumbsControl.ts @@ -357,7 +357,7 @@ export class BreadcrumbsControl { return combinedDisposable([selectListener, focusListener, picker]); }, getAnchor: () => { - let maxInnerWidth = window.innerWidth - 8 /*a little less the the full widget*/; + let maxInnerWidth = window.innerWidth - 8 /*a little less the full widget*/; let maxHeight = Math.min(window.innerHeight * .7, 300); let pickerWidth = Math.min(maxInnerWidth, Math.max(240, maxInnerWidth / 4.17));