mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
Improve file explorer to use file system provider and reveal api
This commit is contained in:
@ -63,9 +63,13 @@
|
||||
}
|
||||
},
|
||||
{
|
||||
"command": "openFtpResource",
|
||||
"command": "ftpExplorer.openFtpResource",
|
||||
"title": "Open FTP Resource"
|
||||
},
|
||||
{
|
||||
"command": "ftpExplorer.revealResource",
|
||||
"title": "Reveal in FTP View"
|
||||
},
|
||||
{
|
||||
"command": "jsonOutline.refresh",
|
||||
"title": "Refresh",
|
||||
@ -88,6 +92,11 @@
|
||||
}
|
||||
],
|
||||
"menus": {
|
||||
"commandPalette": [
|
||||
{
|
||||
"command": "ftpExplorer.revealResource"
|
||||
}
|
||||
],
|
||||
"view/title": [
|
||||
{
|
||||
"command": "jsonOutline.refresh",
|
||||
@ -149,6 +158,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"jsonc-parser": "^0.4.2",
|
||||
"ftp": "^0.3.10"
|
||||
"ftp": "^0.3.10",
|
||||
"jsftp": "^2.0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user