Skip to content

Commit 4135ad2

Browse files
authored
fix: replace 'watch' icon with 'eye-watch' icon (#174)
1 parent a3fbe95 commit 4135ad2

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@
470470
{
471471
"command": "mise.watchTask",
472472
"title": "Mise: Run Task in Watch Mode",
473-
"icon": "$(watch)",
473+
"icon": "$(eye-watch)",
474474
"enablement": "!isWeb"
475475
},
476476
{

src/providers/miseFileTaskCodeLensProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export class MiseFileTaskCodeLensProvider implements vscode.CodeLensProvider {
4848
);
4949
codeLenses.push(
5050
new vscode.CodeLens(range, {
51-
title: "$(watch) Watch",
51+
title: "$(eye-watch) Watch",
5252
tooltip: `Watch task ${existingTask.name}`,
5353
command: MISE_WATCH_TASK,
5454
arguments: [existingTask.name],

src/providers/miseTomlCodeLensProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function createWatchTaskCodeLens(
2929
range: vscode.Range,
3030
): vscode.CodeLens {
3131
return new vscode.CodeLens(range, {
32-
title: "$(watch) Watch",
32+
title: "$(eye-watch) Watch",
3333
tooltip: `Watch task ${taskName}`,
3434
command: MISE_WATCH_TASK,
3535
arguments: [taskName],

0 commit comments

Comments
 (0)