chtenb
chtenb
What I did in the end is implement a file sink for the self log and have the warning messages I proposed write to that self log.
That means that another handle to that file has been opened with exclusive permissions. The `shared` flag doesn't allow to bypass OS-level restrictions, it merely ensures that the logger itself...
I also notice that scrolling is notably slower compared to when the extension is disabled. Any idea where that might come from and if that can be alleviated?
> Does it still happen if you disable all other extensions? And I also need to know your VSCode version, perhaps we can propagate this problem upstream to the VSCode...
@mechatroner I can't attach the file unfortunately because it contains a lot of sensitive data. >Do I understand correctly that you have over 500 columns (i.e. > 500 separators for...
For the record, the file has 387 CSV column (i.e. has 387 commas).
To answer @fdncred ``` ❯ ^echo '**/*.json' dotfiles/keybindings.json dotfiles/settings.json ~ ❯ ^echo "**/*.json" dotfiles/keybindings.json dotfiles/settings.json ~ ❯ ^echo `**/*.json` `**/*.json` ~ took 28s ❯ ^echo **/*.json **/*.json ~ took 25s...
The suggestion of @ChrisDenton yields the following output for me: ``` ❯ ^echo '\"**/*.json\"' \\**/*.json\" ```
@ChrisDenton Your assessment sounds highly plausible to me. I often run into this issue with git commands, and I didn't expect echo to do any expansion, hence my initial assumption...
To come back to one of your earlier posts: some time ago I made some improvements on the Rust support of the tmThemes, because I did some Rust programming myself....