mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-11 10:38:31 -05:00
Refresh master with initial release/0.24 snapshot (#332)
* Initial port of release/0.24 source code * Fix additional headers * Fix a typo in launch.json
This commit is contained in:
@@ -18,6 +18,7 @@ export const TextModelEventType = {
|
||||
ModelContentChanged: 'contentChanged',
|
||||
ModelRawContentChanged2: 'rawContentChanged2',
|
||||
ModelDecorationsChanged: 'decorationsChanged',
|
||||
ModelLanguageConfigurationChanged: 'modelLanguageConfigurationChanged'
|
||||
};
|
||||
|
||||
/**
|
||||
@@ -34,6 +35,12 @@ export interface IModelLanguageChangedEvent {
|
||||
readonly newLanguage: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* An event describing that the language configuration associated with a model has changed.
|
||||
*/
|
||||
export interface IModelLanguageConfigurationChangedEvent {
|
||||
}
|
||||
|
||||
export interface IModelContentChange {
|
||||
/**
|
||||
* The range that got replaced.
|
||||
@@ -81,18 +88,6 @@ export interface IModelContentChangedEvent {
|
||||
* An event describing that model decorations have changed.
|
||||
*/
|
||||
export interface IModelDecorationsChangedEvent {
|
||||
/**
|
||||
* Lists of ids for added decorations.
|
||||
*/
|
||||
readonly addedDecorations: string[];
|
||||
/**
|
||||
* Lists of ids for changed decorations.
|
||||
*/
|
||||
readonly changedDecorations: string[];
|
||||
/**
|
||||
* List of ids for removed decorations.
|
||||
*/
|
||||
readonly removedDecorations: string[];
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user