Home > Back-end >  vscode highlight overridden mixin methods in a python class definition?
vscode highlight overridden mixin methods in a python class definition?

Time:10-12

I have a class Class FOO(MixinOne,...) which inherits from mixins but also overrides some of the methods from those mixins. Is there a way to easily highlight those overridden methods in vscode?

CodePudding user response:

At present, vscode does not have this feature, but the OUTLINE view on the left might work for you.

enter image description here

As for highlighting the overridden method, I submitted a request here.

  • Related