Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Code completion: named union case fields rule #500

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Auto open pop up for other named patterns.
  • Loading branch information
nojaf committed Jun 27, 2023
commit 658af3e5369d2d038f2c6d9327622c686f7f903b
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ type FSharpOnSpaceAutopopupStrategy() =
| :? IRecordFieldBinding as fieldBinding ->
fieldBinding.Semicolon == semi

| :? INamedUnionCaseFieldsPat as namedUnionCaseFieldsPat ->
namedUnionCaseFieldsPat.LastChild == semi
| _ -> false

| TokenType FSharpTokenType.LBRACE lbrace ->
Expand Down