So the new scope naming guidelines suggest using entity.name.constant for constants to get included in the symbol list. I tried it on my sublime-syntax definition but it’s not showing up. I’m using 3118. I also tried variable.other.constant but that didn’t work either.
Also what are examples of using each one?
For a Java example:
public static final Car DEFAULT_CAR = new Car();
Should DEFAULT_CAR
in this case be an entity or a variable.other.constant?