A command line C# REPL with syntax highlighting – explore the language, libraries and nuget packages interactively.
Mozilla Public License 2.0
2.95k
stars
112
forks
source link
Autocomplete gets in the way when using Range syntax #279
Closed
Emik03 closed 1 year ago
Version
0.6.3
What happened?
When attempting to use the Range syntax (
low..high
), the second period causes the autocomplete. For instance, when typing1..
, you get1.CompareTo.
.A similar thing happens when trying to wrap the range too:
(1.
(right arrow).)
, causes(1..AccessViolationException)
instead of(1..)
.