FSharp support like Ionide-VsCode #882
WillEhrendreich
started this conversation in
Ideas
Replies: 1 comment 4 replies
-
In theory you can do this with the That said, I don't know how to selectively apply this to the filesystem source (which is what you want). Dynamically setting the sort function is probably what you need though. This smells like an enhancement request (though it may get shot down, I don't know). |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey all,
I was wondering if there's a good way to implement some of the functionality of other IDE file explorers implementations for FSharp.
FSharp is order-dependent, and so in the .fsproj file, the exact order of what gets evaluated by the compiler is set. if you want the code you're currently working on to know about something, it literally has to be higher in that file, or the file you want it to reference has to come before it in the fsproj.
I would like to be able to interact with the fsproj file from the tree, just like it works in https://github.com/ionide/ionide-vscode-fsharp
it uses https://github.com/ionide/proj-info to do this somehow.
the main features i care about are the ordering of the fs files correctly, adding files above and below, and removing.. at least for now. I think this all might be fairly easy to implement, but I want to throw this out for people to comment on.
what do you think?
Beta Was this translation helpful? Give feedback.
All reactions