Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>Indent SorterNew to Visual Studio Code? Get it now.
Indent Sorter

Indent Sorter

bettercallshao

|
95 installs
| (0) | Free
Sort Indented Blocks
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

indent-sorter

A Visual Studio Code extension that sorts blocks of highlighted code grouped by indentation. Sorting is keyed on the first line in the block that is not a comment.

Example

Before

  # comment
  z_is_not_a_method

  # This is a ruby comment
  def B
    call_method
  end

  def A
    # empty method
  end

After

  def A
    # empty method
  end

  # This is a ruby comment
  def B
    call_method
  end

  # comment
  z_is_not_a_method

demo

More examples in src/test/indent-sorter/

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft