Hi @hecomi!
First: uREPL is awesome! I'm teaching C# scripting for Unity and I think it's going to be a really great asset in my classes.
I'd like to propose that a different search algorithm for the AutoComplete. At the moment it appears to be case sensitive and to only search the start of the method name. Perhaps you could use a search algorithm that:
- Is Case Insensitive
- Supports finding substrings in the middle of the string
Perhaps a bit too ambitiously, it would be amazing if a search for pos after GameObject. would turn up transform.position. This way, if someone only sort of knows what they're trying to accomplish they can find the method they're looking for.
Hi @hecomi!
First: uREPL is awesome! I'm teaching C# scripting for Unity and I think it's going to be a really great asset in my classes.
I'd like to propose that a different search algorithm for the AutoComplete. At the moment it appears to be case sensitive and to only search the start of the method name. Perhaps you could use a search algorithm that:
Perhaps a bit too ambitiously, it would be amazing if a search for
posafterGameObject.would turn uptransform.position. This way, if someone only sort of knows what they're trying to accomplish they can find the method they're looking for.