I'm implementing some intellisense features in a language pack that I'm writing with the MPF. I have it working to a degree, but would like to make it run more smoothly.
At present, it matches with my list of possible functions, and upon selection of a method, will spit out the text for that method and just put the cursor at the end. What I want is to have the cursor be INSIDE the function, like it does in the regular visual studio intellisense.
Examples: '|' denotes the location of the cursor.
1)The user types in myf. 2)Intellisense recognizes the function. 3)User types a completion character.
As it stands: myfunc()|
Desired: myfunc(|)