- Package:
- vim-runtime
- Source:
- vim
- Submitter:
- Simon Richter
- Date:
- 2010-09-17 02:03:04 UTC
- Severity:
- minor
Hi,
when defining an anonymous inner class that derives from an interface,
there is no class name between the keyword "class" and the colon
indicating inheritance, i.e.:
class myclass
{
class :
public interface
{
...
};
};
Syntax highlighting believes "class" to be a label, and uses yellow,
instead of a keyword (green).
Simon