Tim
Results
2
comments of
Tim
It seems like this regressed about 1-2 months ago. A recent fix in VS Code v1.26.0 (https://github.com/Microsoft/vscode/pull/55078) did not work for the cases where Emacs Friendly Keymap was installed.
I've found several scenarios in coding where I have roughly this pattern: ```ts class BaseClass { type: SomeEnum; } class ChildClass extends BaseClass { isCurrentlyActionable: boolean; takeAction() { doSomething(); }...