Dmitry Ignatovich

Results 195 comments of Dmitry Ignatovich

Thanks for opening this issue, it could serve as a good reference for tracking potential loading performance problems. So far the best loading performance tracking tool I have found is...

I did some googling and apparently this functionality is not supported in VSCode - the feature request was closed: https://github.com/microsoft/vscode/issues/83783

Right, very often extensions define a set of file types that should trigger the activation event, the problem is that it is not possible to override these rules from the...

This sounds like a useful feature! There could actually be two ways to do it: 1. Add a command that would append missing commas to the end of each line...

Thank you for the bug report. But I couldn't reproduce this either in Vim or in Neovim, using this data: ``` ,first,second,third,fourth 1,the,why,you,align 2,the,why,you,align 3,the,why,you,align ``` But I don't completely...

Currently, there is no way to do this, but adding an allowlist and a blocklist for autodetection should be relatively straightforward.

Hey, thanks for reporting! Sorry for the late response, the plugin indeed sets `set laststatus=2`, I will look into this and try to find a workaround.

Thanks, @brdoney , you are right - `laststatus` modification is not needed for the core functionality. I removed it as well as `number` adjustment. The plugin should respect user configuration....

Thanks, I like this idea, the only thing I would change is that I think streams can be more efficient than strings, and functionality-wise they are more basic/generic, so we...

Thank you! I agree that this would be really nice to have a Typescript interface available. I don't have a lot of experience with TS, so I would need to...