-
Notifications
You must be signed in to change notification settings - Fork 12.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Component commits: 9163143 Fix newline inserted in empty block at end of formatting range 79b600a Clean up 19ef6b6 Fix refactoring mistake Co-authored-by: Andrew Branch <[email protected]>
- Loading branch information
1 parent
2bed482
commit fbc2b67
Showing
3 changed files
with
25 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
tests/cases/fourslash/formatOnTypeOpenCurlyWithBraceCompletion.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/// <reference path="fourslash.ts"/> | ||
|
||
//// if (foo) { | ||
//// if (bar) {/**/} | ||
//// } | ||
|
||
goTo.marker(""); | ||
format.onType("", "{"); | ||
verify.currentFileContentIs( | ||
`if (foo) { | ||
if (bar) { } | ||
}`); |