Support editor content change notification, URI property and correctly align toolbar items (#2327)

* Support editor content change notification, URI property and correctly align toolbar items

* Better fix for toolbar orientation, plus minor editor fixes
This commit is contained in:
Kevin Cunnane
2018-08-27 10:04:31 -07:00
committed by GitHub
parent 45cf626230
commit f5e2a67924
4 changed files with 50 additions and 6 deletions

View File

@@ -579,6 +579,17 @@ declare module 'sqlops' {
* The languge mode for this text editor. The language mode is SQL by default.
*/
languageMode: string;
/**
* The editor Uri which will be used as a reference for VSCode Language Service.
* Currently this is auto-generated by the framework but can be queried after
* view initialization is completed
*/
readonly editorUri: string;
/**
* An event called when the editor content is updated
*/
readonly onContentChanged: vscode.Event<any>;
}
export interface ButtonComponent extends Component, ButtonProperties {