Sort Blocks instead of lines! Works for all major programming languages including JavaScript / TypeScript, Java, JSON, XML, etc.
The extension offers commands, similar to the default "Sort Lines Ascending / Descending" command. But instead of sorting lines, it sorts code blocks. The selection should automatically expand to the surrounding block if nothing is selected. If something is already selected, the extension tries it's best to validate and clean up your selection.
Additional features include:
@blocksort
annotations andsource.fixAll
code actions for auto-sorting on save- deep (multilevel) sorting for nested blocks
- "natural" sorting for lines containing numbers
The blocks are sorted purely by their content, so while decorators are supported, classes or functions with different decorators will be sorted by their decorators first.
This extension contributes the following commands:
Sort Blocks Ascending
: Sorts the selected code blocks in ascending order. If no code blocks are selected, a selection for the deepest block the cursor is currently positioned in is generated.
Sort Blocks Descending
: Sorts the selected code blocks in descending order. If no code blocks are selected, a selection for the deepest block the cursor is currently positioned in is generated.
Sort Blocks Deep Ascending (Multilevel)
: Sorts the selected code blocks in ascending order, including nested blocks up to a specified depth.
Sort Blocks Deep Descending (Multilevel)
: Sorts the selected code blocks in descending order, including nested blocks up to a specified depth.
Expand current Selection to surrounding Block
: Expand curren selection locally to surrounding lines in block.
Expand current Selection fully (including separating Newlines) to the surrounding Block
: Expand curren selection to complete surrounding block.
The extension provides the following code actions:
source.fixAll.blocksort
: This can be executed on save to auto-sort all blocks following a @blocksort
marker.
To enable auto Sorting, you must set the editor.codeActionsOnSave
in your settings.json
:
{
"editor.codeActionsOnSave": {
"source.fixAll.blocksort": true
}
}
This will enable auto-sorting for blocks following a @blocksort
marker.
The marker can additionally be followed by the options asc
or desc
to control the sorting order,
as well as a number for the sorting depth:
// @blocksort asc
switch(value) {
case 1:
return 1;
case 2:
return 2;
default:
return 2;
}
# @blocksort asc inf
some:
nested:
- code
- (will be
sorted:
- up to
- any level)
This extension contributed the following settings:
defaultMultilevelDepth
: Default depth used for deep sorting.- Default:
-1
(infinite)
- Default:
askForMultilevelDepth
: Skip asking for multilevel depth and always usedefaultMultilevelDepth
.- Default:
true
- Default:
indentIgnoreMarkers
: List of regex markers that when matched will result in ignoring the indentation of the current line. This is for example used for c-style{
in a new line. The markers are always assumed to be at teh start of the line, but can be preceded by spaces and comments.- Default:
[ "end(?:for(?:each)?|if|while|case|def)?\\s*?([\\.\\[\\->\\|\\s]\\s*(?:[$A-Za-z0-9_+\\-\\*\\/\\^\\%\\<\\>\\=\\!\\?\\:]*|'[^']*?'|'[']*?'|\"[^\"]*?\"|`[^`]*?`)\\s*[\\]\\|]?\\s*)*", "esac|fi", "{" ]
- Language Overridable
- Default:
completeBlockMarkers
: List of markers that complete a block. They are assumed to be at the end of a line, but can be succeeded by comments or end-of-line markers (,
or;
).- Default:
["\\}", "<\\/[a-zA-Z0-9\\-_=\\s]+"]
- Language Overridable
- Default:
foldingMarkers
: Dictionary of folding markers. They are supplied set a key-value style, the key being a human-readable ultra-short description of the folding markers.- Base Options are always applied unless overridden in the dictionary, if null is specified, the marker is ignored:
{ "()": { "start": "\\(", "end": "\\)" }, "[]": { "start": "\\[", "end": "\\]" }, "{}": { "start": "\\{", "end": "\\}" }, "<>": { "start": "<", "end": ">" }, }
- Default:
- global:
{}
[xml]
:{ "<>": { "start": "<[a-zA-Z0-9\\-_=\\s]+", "end": "<\\/[a-zA-Z0-9\\-_=\\s]+|\\/>" } }
[html]
,[php]
,[jsx-tags]
:{ "<>": { "start": "<(?!(?:\\/|area|base|br|col|command|embed|hr|img|input|keygen|link|meta|param|source|track|wbr)(?:[\\s\\/]|>))[a-zA-Z0-9\\-_=\\s>]+", "end": "<\\/[a-zA-Z0-9\\-_=\\s]+|\\/>" } }
- global:
- Language Overridable
- Base Options are always applied unless overridden in the dictionary, if null is specified, the marker is ignored:
enableNaturalSorting
: Enables the natural sorting behavior for lines containing numbers.- Default:
false
- Deprecated: This option is n longer used, use
collationOptions.numeric
instead
- Default:
collatorOptions
: Collator options for sorting. See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Collator/Collator for more information- Default:
{ "numeric": true, "caseFirst": "false", "sensitivity": "base" }
- In addition to the default JavaScript Collator options, the following properties can be supplied
locales
: A BCP 47 language tag, or an comma separated array of such strings.customSortOrder
: Custom Sort order in the form of a list of characterscustomIgnoreCharacters
: A list of characters that are ignored when sorting, e.g."'\"()[]{}<>"
- Default:
sortConsecutiveBlockHeaders
: sorts consecutive block headers, such as a list ofcase
statements.- Default:
true
- Language Overridable
- Default:
enableCodeLens
: enables / disables code lenses shown over blocks annotated with@blocksort
- Default:
true
- If
true
will copy value fromenableCodeActions
- Default:
enableCodeActions
: enables / disables code actions used for sorting blocks annotated with@blocksort
, this will have an effect onfixAll
code actions- Default: "*"
- Will be overridden with
enableCodeLens
when set tofalse
to avoid non-functioning code lenses
enableDocumentFormatting
: Document selector for selecting documents to select formatting for. Only matching documents will have aSort with
entry- Default:
*
- Default:
enableRangeFormatting
: Document selector for selecting documents to select formatting for. Only matching documents will have aSort with
entry- Default:
true
- If
true
will copy value fromenableDocumentFormatting
- Default:
forceBlockHeaderFirstRegex
: Regex to match block headers that should be sorted first.^
and$
will be expanded to allow comments- Default:
^$
- Language Overridable
- Default:
forceBlockHeaderLastRegex
: Regex to match block headers that should be sorted last.^
and$
will be expanded to allow comments- Default:
^(\\s*(when|case)\\s*('([^']|(?<=\\\\)')*'|\"([^\"]|(?<=\\\\)\")*\"|`([^`]|(?<=\\\\)`)*`|[A-Za-z_+\\-*/%<>d.,s]*)*\\s*(.*:)?\\n?\\r?)*\\s*default|else(?!\\s?if)\\s*:?$
- Language Overridable
- Default:
multiBlockHeaderRegex
: Regex for multi-block-headers such as a list ofcase
statements under each other.^
and$
will be expanded to allow comments- Default:
^(when|case|default|else)\\s*('([^']|(?<=\\\\)')*'|\"([^\"]|(?<=\\\\)\")*\"|`([^`]|(?<=\\\\)`)*`|[A-Za-z_+\\-*/%<>d.,s]*)*\\s*(.*:)?$
- Language Overridable
- Default:
incompleteBlockRegex
: Regex for incomplete blocks.^
and$
will be expanded to allow comments- Default:
(if|when|else|case|for|foreach|else|elsif|while|def|then|default)\\s*('([^']|(?<=\\\\)')*'|\"([^\"]|(?<=\\\\)\")*\"|`([^`]|(?<=\\\\)`)*`|[A-Za-z_+\\-*/%<>d.,s]*)*\\s*(.*:)?$
- Language Overridable
- Default:
keepAppendedNewlines
: Keep appended Newlines in place when sorting- Default:
true
- Default:
expandSelection
: Expand Selection options- Default:
{ "expandLocally": true, "expandOverEmptyLines": false, "foldingComplete": true, "indentationComplete": true }
- Default:
expandSelection
: Expand Cursor to selection options- Default:
{ "expandLocally": true, "expandOverEmptyLines": false, "foldingComplete": true, "indentationComplete": true }
- Default:
Settings marked as Language Overridable can be specified on a per-language basis using the notation:
"[typescript]": {
"blocksort.foldingMarkers": {
"<>": {
"start": "<",
"end": "/>"
}
}
}
- some spacings between the original blocks may not be preserved
- The extension does NOT check for code errors due to sorting
- The extension assumes valid formatting, invalid formatting will probably result in invalid sorting
This theme is maintained by the following person:
Aram Becker |
The following users have contributed to the project:
User | Commits | |
---|---|---|
sixskys | 1 |
The following users have inspired features or noticed important issues:
User | Feature | |
---|---|---|
Yamlcase | Support for indent-style syntax | |
lavermil | Multilevel sorting | |
centigrade-thomas-becker | auto-sort on save | |
axefrog | language specific extension settings |