diff --git a/out/.vscode/launch.json b/.vscode/launch.json
similarity index 80%
rename from out/.vscode/launch.json
rename to .vscode/launch.json
index ecf1110..efcaf22 100644
--- a/out/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -7,7 +7,7 @@
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
- "args": ["--extensionDevelopmentPath=${workspaceRoot}" ]
+ "args": ["--extensionDevelopmentPath=${workspaceRoot}/out" ]
}
]
}
diff --git a/README.md b/README.md
index 35843bb..622b8f7 100644
--- a/README.md
+++ b/README.md
@@ -5,14 +5,7 @@ An early proof of concept of a program that can generate theme files for editors
## Usage
```bash
-npm run build
-npm start
+npm run build && npm start
```
-## Testing the generated theme
-
-```bash
-code out
-```
-
-F5 will launch the VS Code debugger with the theme available to switch to.
+To test VS Code extensions, F5 will launch the Code debugger with the theme available to switch to.
diff --git a/src/vscodeThemeGenerator.ts b/src/vscodeThemeGenerator.ts
index 4c82355..3d9f7cb 100644
--- a/src/vscodeThemeGenerator.ts
+++ b/src/vscodeThemeGenerator.ts
@@ -120,7 +120,6 @@ export class VscodeThemeGenerator implements IThemeGenerator {
const theme: IVscodeJsonTheme = {};
theme.name = name;
theme.settings = [];
- //{"name":"background","settings":{"background":"#151515","caret":"#0000FF"}}
const globalSetting: any = {
name: 'Global settings',