Skip to content
This repository has been archived by the owner on Aug 31, 2023. It is now read-only.

Commit

Permalink
address PR review
Browse files Browse the repository at this point in the history
  • Loading branch information
leops committed Aug 31, 2022
1 parent 64e0320 commit 425aadc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion editors/vscode/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { setContextValue } from "./utils";
import { Session } from "./session";
import { syntaxTree } from "./commands/syntaxTree";
import { Commands } from "./commands";
import { StatusBar } from "./status_bar";
import { StatusBar } from "./statusBar";

let client: LanguageClient;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ import { StatusBarAlignment, StatusBarItem, ThemeColor, window } from "vscode";
import { State } from "vscode-languageclient";
import { Commands } from "./commands";

/**
* Enumeration of all the status the extension can display
*
* The string value of the enum is the ThemeIcon ID to be displayer in the status
* bar item when this status is active
*
* See https://code.visualstudio.com/api/references/icons-in-labels#icon-listing
* for a list of available icons
*/
enum Status {
Pending = "refresh",
Ready = "check",
Expand Down

0 comments on commit 425aadc

Please sign in to comment.