Skip to content

Commit 04050eb

Browse files
committed
Cleanup
1 parent a7aff4d commit 04050eb

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

client/src/extension.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
import { ExtensionContext, Terminal, window } from 'vscode';
2+
import { ExtensionContext, Terminal } from 'vscode';
33

44
import {
55
LanguageClient
@@ -8,7 +8,7 @@ import { setupSelectedVersion } from './setupSelectedVersion';
88
import { setupCommands } from './setupCommands';
99
import { setupLanguageServer } from './setupLanguageServer';
1010
import { setupSidebar } from './setupSidebar';
11-
import { PdeFileDecorationProvider, setupDecorators } from './setupDecorators';
11+
import { setupDecorators } from './setupDecorators';
1212

1313

1414
export interface ProcessingVersion {
@@ -26,6 +26,7 @@ export async function activate(context: ExtensionContext) {
2626
// TODO: Check for other Processing plugins and request deactivation if they are installed
2727
// TODO: Add examples and sketchbook window
2828
// TODO: Generate grammar based on the Processing version
29+
// TODO: Setup language icon
2930

3031
await setupSelectedVersion(context);
3132
setupCommands(context);

client/src/setupCommands.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export function setupCommands(context: ExtensionContext) {
1010

1111
// TODO: Save the current file, maybe settting?
1212
// TODO: Add a keyboard shortcut to run the sketch
13+
// TODO: Give feedback if the sketch is starting
1314

1415
let terminal = state.terminal;
1516
// Create a new terminal

client/src/setupSidebar.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { join } from 'path';
21
import { ProviderResult, TreeDataProvider, TreeItem, TreeItemCollapsibleState, window } from 'vscode';
32

43

client/tsconfig.tsbuildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"root":["./src/compareversions.ts","./src/extension.ts","./src/setupcommands.ts","./src/setupdecorators.ts","./src/setuplanguageserver.ts","./src/setupselectedversion.ts","./src/setupsidebar.ts"],"errors":true,"version":"5.8.3"}
1+
{"root":["./src/compareversions.ts","./src/extension.ts","./src/setupcommands.ts","./src/setupdecorators.ts","./src/setuplanguageserver.ts","./src/setupselectedversion.ts","./src/setupsidebar.ts"],"version":"5.8.3"}

0 commit comments

Comments
 (0)