mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 02:58:56 +01:00
Adding settings to control which schemes simple browser is enabled for
Also adds a setting to enable/disable the focus lock indicator
This commit is contained in:
@@ -9,12 +9,12 @@
|
||||
"license": "MIT",
|
||||
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
|
||||
"engines": {
|
||||
"vscode": "^1.50.0"
|
||||
"vscode": "^1.53.0"
|
||||
},
|
||||
"main": "./out/extension",
|
||||
"browser": "./dist/browser/extension",
|
||||
"categories": [
|
||||
"Programming Languages"
|
||||
"Other"
|
||||
],
|
||||
"activationEvents": [
|
||||
"onCommand:simpleBrowser.show",
|
||||
@@ -33,11 +33,26 @@
|
||||
{
|
||||
"title": "Simple Browser",
|
||||
"properties": {
|
||||
"simpleBrowser.focusLockIndicator.enabled": {
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"title": "Focus Lock Indicator Enabled",
|
||||
"description": "%configuration.focusLockIndicator.enabled.description%"
|
||||
},
|
||||
"simpleBrowser.opener.enabled": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"title": "Opener Enabled",
|
||||
"description": "(Experimental) Enables opening http and https urls using the built-in seper browser"
|
||||
"description": "%configuration.opener.enabled.description%"
|
||||
},
|
||||
"simpleBrowser.opener.enabledHosts": {
|
||||
"type": "array",
|
||||
"title": "Opener Enabled Hosts",
|
||||
"markdownDescription": "%configuration.opener.enabledHosts.description%",
|
||||
"default": [
|
||||
"localhost",
|
||||
"127.0.0.1"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user