Skip to content

Commit

Permalink
When generating FSI refs files, don't use an explicit view column. (#…
Browse files Browse the repository at this point in the history
…2028)

Instead, open the file in the 'beside' column - which is relative and will
never open more than one column.
  • Loading branch information
baronfel committed Jul 29, 2024
1 parent 37a241b commit eb9373f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Components/Fsi.fs
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ module Fsi =

let! td = vscode.Uri.parse ("untitled:" + path) |> workspace.openTextDocument

let! te = window.showTextDocument (td, ViewColumn.Three)
let! te = window.showTextDocument (td, ViewColumn.Beside)

let! _ =
te.edit (fun e ->
Expand Down

0 comments on commit eb9373f

Please sign in to comment.