Matt Seddon

Results 236 comments of Matt Seddon

Any update on this? I've been delaying a release waiting for it.

> This is not possible right now for DVC, as it uses `git`'s untracked information and we only get a flattened list. > > Soon, we will have support to...

Not that I am aware of but it could quite easily be happening in the background underneath a VS code session. I do see a difference in performance at the...

@pmrowla seems like this is still happening for checkpoint experiments on the latest version: https://github.com/iterative/vscode-dvc/pull/2210/commits/02256ae7eff7b5022754f0b74e1a24bed76cdc96 ```console $ dvc doctor DVC version: 2.18.1 (pip) --------------------------------- Platform: Python 3.8.9 on macOS-12.5-arm64-arm-64bit Supports:...

Related to https://github.com/iterative/vscode-dvc/issues/1995 & https://github.com/iterative/vscode-dvc/issues/1996.

Is completed/failed a boolean result? Can there be a partial failure? If it is a boolean then I'm happy with `succeeded` of `failed`. Will the error message will be nested...

The format that we expect for a record that is completely broken is: ``` "sha_rev": { "error": { "msg": error_msg, "type": "" }, }, ... "success":false, } } ``` Where...

You could add the following function to your `.zshrc` ```shell function remove_from_history () { to_remove="${*//\s/\s}" LC_ALL=C sed -i '' '/;'"$to_remove"'$/d' "$HISTFILE" exec zsh } alias rfh=remove_from_history ``` then run `rfh...

Hi @DavidGOrtega, Thanks for raising this. I tried to set things up so that this should work. However, this was not a focus during the release though so things have...