Skip to content

Commit

Permalink
feat: indicate when using nightly in status bar (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
nhedger authored Nov 20, 2023
1 parent bae85b7 commit 3795a40
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/statusBar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,9 @@ export class StatusBar {
status = Status.Error;
}

this.statusBarItem.text = `$(${status}) Biome ${this.serverVersion} ${
this.statusBarItem.text = `$(${status}) Biome${
this.context.extension.id === "biomejs.biome-nightly" ? " (nightly)" : ""
} ${this.serverVersion} ${
this.usingBundledBiome ? "(bundled)" : ""
}`.trimEnd();

Expand Down

0 comments on commit 3795a40

Please sign in to comment.