-
Notifications
You must be signed in to change notification settings - Fork 342
Commit
… name properties
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -790,7 +790,7 @@ class Migration { | |
|
||
function realActivate(context: ExtensionContext): void { | ||
|
||
const statusBarItem = Window.createStatusBarItem(StatusBarAlignment.Right, 0); | ||
const statusBarItem = Window.createStatusBarItem('generalStatus', StatusBarAlignment.Right, 0); | ||
let serverRunning: boolean | undefined; | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
dbaeumer
Author
Member
|
||
|
||
const starting = 'ESLint server is starting.'; | ||
|
@dbaeumer I think you missed to add a
name
, the identifier is one part of it, thename
is for showing in the menu.