mirror of
https://github.com/Tyriar/vscode-theme-generator.git
synced 2025-12-06 17:15:43 -08:00
Simply VS Code debugging
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
"type": "extensionHost",
|
||||
"request": "launch",
|
||||
"runtimeExecutable": "${execPath}",
|
||||
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ]
|
||||
"args": ["--extensionDevelopmentPath=${workspaceRoot}/out" ]
|
||||
}
|
||||
]
|
||||
}
|
||||
11
README.md
11
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
|
||||
```
|
||||
|
||||
<kbd>F5</kbd> will launch the VS Code debugger with the theme available to switch to.
|
||||
To test VS Code extensions, <kbd>F5</kbd> will launch the Code debugger with the theme available to switch to.
|
||||
|
||||
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user