mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-15 17:22:25 -05:00
* #3753: User settings configuration - python installation path * Text change * #3753: Text change * Message change
77 lines
1.5 KiB
JSON
77 lines
1.5 KiB
JSON
{
|
|
"name": "notebook",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"version": "0.1.0",
|
|
"publisher": "Microsoft",
|
|
"engines": {
|
|
"vscode": "*",
|
|
"sqlops": "*"
|
|
},
|
|
"main": "./out/extension",
|
|
"activationEvents": [
|
|
"*"
|
|
],
|
|
"contributes": {
|
|
"configuration": {
|
|
"type": "object",
|
|
"title": "%notebook.configuration.title%",
|
|
"properties": {
|
|
"notebook.enabled": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "%notebook.enabled.description%"
|
|
},
|
|
"notebook.pythonPath": {
|
|
"type": "string",
|
|
"default": "",
|
|
"description": "%notebook.pythonPath.description%"
|
|
}
|
|
}
|
|
},
|
|
"commands": [
|
|
{
|
|
"command": "notebook.command.new",
|
|
"title": "%notebook.command.new%",
|
|
"icon": {
|
|
"dark": "resources/dark/new_notebook_inverse.svg",
|
|
"light": "resources/light/new_notebook.svg"
|
|
}
|
|
},
|
|
{
|
|
"command": "notebook.command.open",
|
|
"title": "%notebook.command.open%",
|
|
"icon": {
|
|
"dark": "resources/dark/open_notebook_inverse.svg",
|
|
"light": "resources/light/open_notebook.svg"
|
|
}
|
|
}
|
|
],
|
|
"menus": {
|
|
"commandPalette": [
|
|
{
|
|
"command": "notebook.command.new",
|
|
"when": "config.notebook.enabled"
|
|
},
|
|
{
|
|
"command": "notebook.command.open",
|
|
"when": "config.notebook.enabled"
|
|
}
|
|
]
|
|
},
|
|
"keybindings": [
|
|
{
|
|
"command": "notebook.command.new",
|
|
"key": "Ctrl+Shift+N",
|
|
"when": "config.notebook.enabled"
|
|
}
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"vscode-nls": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "8.0.33"
|
|
}
|
|
}
|