Can someone that has used both the Shell version and the non-Express version of the Visual Studio comment on if the fomer provides the identical F# code editing experience as the latter? I am asking this because I found that the VS mode screenshots from the F#.wiki didn't match to what I saw in my Shell mode.
Another question related to text highlighting. In this example:
let site1 = ("www.cnn.com",10)
let site2 = ("news.bbc.com",5)
let site3 = ("www.msnbc.com",4)
let sites = (site1,site2,site3)
When I highlighted the word "site1" on the first line, i was expecting to see all appearances of "site1" highlighted as well. This did not happen in my VS Shell. Is this a feature missing from the VS mode or is this something impossible to be done to the F# code?
Thanks.
da