I'm developing a F# project using Visual Studio 2017. Before, I've used C# and I'm used to great autocompletion in VS that automatically pops-out and shows me a list of local variables, methods and so on when I press any character.
Unfortunately, in F# I need to force autocompletion to show by pressing ctrl + space
. It shows automatically when I type someObject.
, but I need to type entire phrase someObject
or press ctrl + space
every time I want VS to complete long variable name for me. It gets pretty annoying as I'm used to similar feature in VS Code, Sublime, and C# in VS and it really speeds up coding.
I wonder if there is any setting / plugin / hack to have such feature when using F# inside Visual Studio?
Is it possible to mock ctrl + space
when I type any character in code editor?