Skip to content

Commit f38bd78

Browse files
CopilotTheAngryByrd
andcommitted
Format code with fantomas
Co-authored-by: TheAngryByrd <[email protected]>
1 parent 0e066b1 commit f38bd78

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/FsAutoComplete.Core/Commands.fs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -785,12 +785,13 @@ module Commands =
785785
symbolUses
786786
else
787787
symbolUses |> Seq.filter (fun u -> not u.IsFromDefinition)
788-
788+
789789
// For Active Pattern Cases, FCS returns all cases in the pattern, not just the specific one
790790
// We need to filter to only the symbol that matches our query
791791
match symbolUse.Symbol with
792792
| :? FSharpActivePatternCase as apc ->
793-
baseFiltered |> Seq.filter (fun u ->
793+
baseFiltered
794+
|> Seq.filter (fun u ->
794795
match u.Symbol with
795796
| :? FSharpActivePatternCase as foundApc -> foundApc.Name = apc.Name
796797
| _ -> false)

0 commit comments

Comments
 (0)