I am developing a F # project using Visual Studio 2017. I used to use C #, and I'm used to a lot of autocompletion in VS, which automatically pops up and shows me a list of local variables, methods, etc. When I click on any character.
Unfortunately, in F # I need to make autocomplete show by pressing ctrl + space . It displays automatically when I type someObject. but I need to type the whole phrase someObject or press ctrl + space every time I want VS to end the long variable name for me. This gets pretty annoying as I'm used to a similar feature in VS Code, Sublime, and C # in VS, and it really speeds up the coding.
I wonder if there is any / plugin / hack option for such a function when using F # inside Visual Studio? Is it possible to mock ctrl + space when entering any character in the code editor?
source share