-
Notifications
You must be signed in to change notification settings - Fork 30.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
92 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
86 changes: 86 additions & 0 deletions
86
src/vs/workbench/contrib/codeEditor/browser/semanticTokensHelp.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
/*--------------------------------------------------------------------------------------------- | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for license information. | ||
*--------------------------------------------------------------------------------------------*/ | ||
|
||
import * as nls from 'vs/nls'; | ||
import * as path from 'vs/base/common/path'; | ||
import { Disposable, DisposableStore } from 'vs/base/common/lifecycle'; | ||
import { ICodeEditor } from 'vs/editor/browser/editorBrowser'; | ||
import { registerEditorContribution } from 'vs/editor/browser/editorExtensions'; | ||
import { IEditorContribution } from 'vs/editor/common/editorCommon'; | ||
import { INotificationService, Severity } from 'vs/platform/notification/common/notification'; | ||
import { IOpenerService } from 'vs/platform/opener/common/opener'; | ||
import { URI } from 'vs/base/common/uri'; | ||
import { ITextModel } from 'vs/editor/common/model'; | ||
import { IWorkbenchThemeService } from 'vs/workbench/services/themes/common/workbenchThemeService'; | ||
|
||
/** | ||
* Shows a message when semantic tokens are shown the first time. | ||
*/ | ||
export class SemanticTokensHelp extends Disposable implements IEditorContribution { | ||
|
||
public static readonly ID = 'editor.contrib.semanticHighlightHelp'; | ||
|
||
constructor( | ||
_editor: ICodeEditor, | ||
@INotificationService _notificationService: INotificationService, | ||
@IOpenerService _openerService: IOpenerService, | ||
@IWorkbenchThemeService _themeService: IWorkbenchThemeService | ||
) { | ||
super(); | ||
|
||
const toDispose = this._register(new DisposableStore()); | ||
const localToDispose = toDispose.add(new DisposableStore()); | ||
const installChangeTokenListener = (model: ITextModel) => { | ||
localToDispose.add(model.onDidChangeTokens((e) => { | ||
if (!e.semanticTokensApplied) { | ||
return; | ||
} | ||
|
||
toDispose.dispose(); // uninstall all listeners, makes sure the notification is only shown once per window | ||
|
||
const message = nls.localize( | ||
{ | ||
key: 'semanticTokensHelp', | ||
comment: [ | ||
'Variable 0 will be a file name.', | ||
'Variable 1 will be a theme name.' | ||
] | ||
}, | ||
"Semantic highlighting has been applied on top of the syntax highlighting of {0} as current the theme ({1}) has semantic highlighting enabled.", | ||
path.basename(model.uri.path), _themeService.getColorTheme().label | ||
); | ||
|
||
_notificationService.prompt(Severity.Info, message, [ | ||
{ | ||
label: nls.localize('learnMoreButton', "Learn More"), | ||
run: () => { | ||
const url = 'https://go.microsoft.com/fwlink/?linkid=852450'; | ||
|
||
_openerService.open(URI.parse(url)); | ||
} | ||
} | ||
], { neverShowAgain: { id: 'editor.contrib.semanticTokensHelp' } }); | ||
})); | ||
}; | ||
|
||
|
||
const model = _editor.getModel(); | ||
if (model !== null) { | ||
installChangeTokenListener(model); | ||
} | ||
|
||
toDispose.add(_editor.onDidChangeModel((e) => { | ||
localToDispose.clear(); | ||
|
||
const model = _editor.getModel(); | ||
if (!model) { | ||
return; | ||
} | ||
installChangeTokenListener(model); | ||
})); | ||
} | ||
} | ||
|
||
registerEditorContribution(SemanticTokensHelp.ID, SemanticTokensHelp); |