pragmagic / vscode-nim

An extension for VS Code which provides support for the Nim language.
Other
235 stars 38 forks source link

Auto-completion doesn't work across styles #145

Open dawkot opened 4 years ago

dawkot commented 4 years ago

With a proc like:

proc hello_snake = discard

If I start typing "helloS", I get the autocompletion for hello_snake It doesn't work the other way around. With:

proc helloCamel = discard

If I start typing "hello_c", there's no autocompletion for that.