Properties aren't displayed if cycli thinks the user is typing a float. E.g.,
MATCH (p:Person) WHERE p.age > 5.
won't bring up a menu of properties. However, we do want properties in the case of identifiers that end in numbers:
MATCH (p1:Person) WHERE p1.
At the point above, properties should be displayed. Currently they are not because the current algorithm only checks the most previous character, not the entire identifier.
Properties aren't displayed if cycli thinks the user is typing a float. E.g.,
won't bring up a menu of properties. However, we do want properties in the case of identifiers that end in numbers:
At the point above, properties should be displayed. Currently they are not because the current algorithm only checks the most previous character, not the entire identifier.