Is there a reload button in the current version?
It would be more convenient to have a reload button during debugging (>_<
When working on an HDF5 file, one has to close and re-open the file to see changes in H5Web.
Requested solution or feature
The extension could watch the open file for changes and send the updated binary over to the webview. This would be more coherent with how VS Code behaves with regular text files.
Alternatives you've considered
Adding a button or command in the UI, which would remain a manual action... Moreover:
Adding a button to the H5Web UI specifically for this requires making a change to the @h5web/app package to allow for this extensibility, which isn't great.
There's already the "Reload webviews" command, but this takes a bit of time and not very discoverable.
A custom command might be faster as it wouldn't require reloading the whole webview, but the discoverability problem would remain.
Is your feature request related to a problem?
From https://github.com/silx-kit/vscode-h5web/issues/27#issuecomment-1611404695:
When working on an HDF5 file, one has to close and re-open the file to see changes in H5Web.
Requested solution or feature
The extension could watch the open file for changes and send the updated binary over to the webview. This would be more coherent with how VS Code behaves with regular text files.
Alternatives you've considered
Adding a button or command in the UI, which would remain a manual action... Moreover: