mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 09:35:39 -05:00
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:
11
src/sql/sqlops.proposed.d.ts
vendored
11
src/sql/sqlops.proposed.d.ts
vendored
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user