MCPcopy
hub / github.com/APKLab/APKLab / showStatusBar

Function showStatusBar

src/tools/smali-lsp.ts:201–211  ·  view source on GitHub ↗
(text: string, tooltip: string)

Source from the content-addressed store, hash-verified

199}
200
201function showStatusBar(text: string, tooltip: string): void {
202 if (!statusBarItem) {
203 statusBarItem = window.createStatusBarItem(
204 StatusBarAlignment.Left,
205 100,
206 );
207 }
208 statusBarItem.text = text;
209 statusBarItem.tooltip = tooltip;
210 statusBarItem.show();
211}
212
213function updateStatusBar(state: State): void {
214 switch (state) {

Callers 2

startServerFunction · 0.85
updateStatusBarFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected