Skip to content

Commit b687788

Browse files
committed
Don't steal focus from the user for the solution explorer
1 parent 2051a86 commit b687788

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

release/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@
829829
"type": "boolean"
830830
},
831831
"FSharp.showExplorerOnStartup": {
832-
"default": true,
832+
"default": false,
833833
"description": "Automatically shows solution explorer on plugin startup",
834834
"type": "boolean"
835835
},

src/fsharp.fs

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ let private activateLanguageServiceRestart (context: ExtensionContext) =
3636
let activate (context: ExtensionContext) : JS.Promise<Api> =
3737
let solutionExplorer = "FSharp.enableTreeView" |> Configuration.get true
3838

39-
let showExplorer = "FSharp.showExplorerOnStartup" |> Configuration.get true
39+
let showExplorer = "FSharp.showExplorerOnStartup" |> Configuration.get false
4040

4141
let tryActivate label activationFn =
4242
fun ctx ->

0 commit comments

Comments
 (0)