F# intellisense in a custom editor

f#, ide, intellisense

Solution

F# intellisense tool is available as an independent package including its parser and type inference mechanisms.

I believe it isn't difficult to use the tool in your own editor (see the introduction here).

Problem

is there a way to migrate F# intellisense into my own editor without having to rewrite its parser and, worst of all, its type inference mechanisms? Thanks

Original source