in src/extension.ts [426:438]
public update() {
const texts: string[] = [];
if (this.status && this.status.message) {
texts.push(this.status.message);
}
if (this.liveQuery) {
texts.push('Live Query');
}
this.info.text = texts.join(', ');
const editor = window.activeTextEditor;
const show = this.info.text && editor && editor.document.languageId === 'azcli';
this.info[show ? 'show' : 'hide']();
}