liximomo / vscode-sftp

Super fast sftp/ftp extension for VS Code
MIT License
1.5k stars 256 forks source link

Watcher only watches files in root workspace #894

Open figarro opened 3 years ago

figarro commented 3 years ago

Hello,

I've been enjoying your extension, but I think there's a problem with the watcher. It only works for files in the root of the VSCode workspace. Am I doing something wrong? Here's my config:

"watcher": {
    "files": "*.{css,php,js,txt,jpg,png,svg,eot,ttf,woff,woff2,mo,po,pot}",
    "autoUpload": true,
    "autoDelete": true
}

Thanks

ghost commented 3 years ago

Try:

"watcher": {
    "files": "**/*.{css,php,js,txt,jpg,png,svg,eot,ttf,woff,woff2,mo,po,pot}",
    "autoUpload": true,
    "autoDelete": true
}
figarro commented 3 years ago

Thanks, it works now. I've been looking into documentation for a while now.