-
Notifications
You must be signed in to change notification settings - Fork 38.2k
Open
Labels
editor-foldingEditor code folding issuesEditor code folding issuesfeature-requestRequest for new features or functionalityRequest for new features or functionality
Milestone
Description
Consider a large JavaScript file
function a() {
...
}
function b() {
...
}
function c() {
...
}
and so on...Collapsing all currently yields:
function a() { ...
}
function b() { ...
}
function c() { ...
}
and so on...This would be more readable if the closing brace was on the same line:
function a() { ... }
function b() { ... }
function c() { ... }
and so on...Here is how other prominent editors handle the above:
Atom
Brackets
Sublime Text 3
VS Code
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
editor-foldingEditor code folding issuesEditor code folding issuesfeature-requestRequest for new features or functionalityRequest for new features or functionality



