in c# you have a method dropdown in the top right of the editor window in VS 2012 to show all the methods in a class. Is it possible to have the same in f#? Its hard to follow with lots of methods without one.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I implemented a prototype of this for Visual Studio 2010 during an internship at MSR back in 2009 (or so). It was never properly tested and so it is not enabled by default, but somehow the code stayed there and it can be enabled (in both VS2010 and VS2012) by adding some hidden keys to
appSettingsindevenv.exe.config. You can also enable collapsing of some definitions:It might work or it might not, but you can give it a try :-).
This blog post has some more details.
PS: It was really just an experiment in a week or so (that’s why it is so unreliable) as I was mainly working on other things, but I think it might be possible to reimplement this properly as a plugin based on the open-source release of the compiler, in case anyone is interested…