You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(Sky): Strip codicon syntax from status bar text and isolate fallback bar
The bridge now removes VS Code codicon syntax (`$(name)`, `$(name~spin)`) from status bar text before rendering. Stock workbench substitutes these for codicon font glyphs; the bridge doesn't parse them, so raw `$(sync~spin)` + Unicode placeholder codepoints were rendering as garbled "weird emojis" in the fallback bar.
Also changes status bar items to ALWAYS use the dedicated fallback bar - never inject into VS Code's native `.statusbar`. Mixing extension-routed items with native workbench DOM mixes two rendering systems and produced the "not the default status bar" appearance. Bridge items now live in a separate bar that workbench doesn't manage, so the two coexist without visual conflict.
Applies StripCodicons to both create and update handlers.
0 commit comments