Rafał Chłodnicki
Rafał Chłodnicki
Can you reproduce the issue in safe mode (hold option while opening ST from the dock)?
Well, in my case the issue seems to be related to custom keybinding so could be the same for you (either your own or coming from some installed packages).
There are mac-specific settings that override `hardware_acceleration` to `opengl`. That said, suggesting to disable hardware acceleration is not the best advice as it will degrade performance generally. Also, according to...
@rwols @predragnikolic @ayoub-benali
Rather than `on_selected()` and `on_deselected`, I think it would be better to have just `on_selected` but with arguments that specify the source. That's because coordinating logic within two separate methods...
I see that this is a pretty recent (>=TS 5.44) addition in VSCode so it wasn't ported to this project yet. Relevant PRs in: - Typescript: https://github.com/microsoft/TypeScript/pull/54662 - VSCode: https://github.com/microsoft/vscode/pull/193848...
I suppose those could be merged if at the same time extending yours with extra information provided here. Your doesn't involve any list items being present so in theory it...
I'm still trying to do something about it since it's an actual issue for LSP-vue.
That actually makes it clear that it's not trivial... I think the only way this could work for us if ST would provide an "edit" equivalent to what what would...
My assumption is that it makes the base method types wide enough to encompass any number of arguments in the overridden method. That said, I've just noticed that it makes...