WrapToColumn

An IntelliJ plugin that wraps text

APACHE-2.0 License

Stars
61
Committers
5

Bot releases are visible (Hide)

WrapToColumn - 1.9.1

Published by abrookins about 2 months ago

  • Fixed #57: incorrectly wrapped code adjacent to comments. You no longer have to select a comment directly adjacent to code to avoid wrapping the code as well. Instead, Wrap Paragraph to Column will wrap only the comment.
  • Fixed #55, #53: Markdown blockquote wrapping.
  • Fixed #63: com.intellij.diagnostic.PluginException: ActionUpdateThread.OLD_EDT is deprecated and going to be removed soon. 'com.andrewbrookins.idea.wrap.WrapAction' must override getActionUpdateThread() and chose EDT or BGT. See ActionUpdateThread javadoc. [Plugin: com.andrewbrookins.wrap_to_column]
WrapToColumn - 1.9.0 Latest Release

Published by abrookins about 2 months ago

  • Wrap Paragraph to Column and Wrap Line to Column now work the same way when you select text: the selected text will be wrapped. They differ only when you do not select text. Wrap Paragraph to Column will wrap the paragraph, and Wrap Line to Column will wrap the current line.
  • Refactor plugin internals to use AnAction instead of deprecated `execute method.
WrapToColumn - 1.7.0

Published by abrookins about 3 years ago

  • Add better support for wrapping lists in Markdown, AsciiDoc, and .txt files
  • Ignore most comment-like symbols in Markdown, AsciiDoc, and .txt files (these symbols are used for formatting, not comments, in these documents)
  • Fix a regression in wrapping to the configured IDE right margin
  • Fix many cases of Wrap Paragraph to Column action wrapping code before or after a comment
  • Fix an issue that required you to select an entire line in order to reflow correctly if there was leading whitespace
WrapToColumn - 1.6.0

Published by abrookins about 3 years ago

  • Adds support for SQL comments. Thanks, Elijah Carrel!
WrapToColumn - 1.5.0

Published by abrookins about 3 years ago

  • Fix plugin XML compatibility with newer Intellij versions.
  • Special thanks to Edgars Irmejs and Aleksei Kniazev for fixes!
WrapToColumn - 1.4.0

Published by abrookins almost 8 years ago

Adds a new feature:

  • Wrap Paragraph to Column: Wraps the paragraph in which the cursor appears.
    A paragraph is defined as text offset by blank lines -- including lines that
    only start with what looks like comment syntax (e.g., //). Selected text
    is ignored (no selection is needed).

Bug fix:

  • Wrap Line to Column no longer tries to wrap an empty line.
WrapToColumn - 1.3.1

Published by abrookins almost 9 years ago

  • Fix for "kotlin/jvm/internal/Intrinsics" error found in Intellij 14.1.x-based editors.
WrapToColumn - 1.3.0

Published by abrookins almost 9 years ago

  • New feature: Use an optional "minimum raggedness" algorithm. You can enable this in Tools -> Wrap to Column.
WrapToColumn - 1.2.0

Published by abrookins almost 9 years ago

  • Reflow text containing tabs based on the configured tab width setting.
WrapToColumn - 1.1.0

Published by abrookins almost 9 years ago

  • New feature: Set a column width override in Settings: Tools -> Wrap to Column. Overrides style and global column width settings.
WrapToColumn - 1.0.1

Published by abrookins about 9 years ago

  • Fix C-style continuations (newer versions of Intellij)
WrapToColumn - 0.1.5

Published by abrookins about 9 years ago

  • Fix a bug with C-style line continuations (older versions of Intellij)
WrapToColumn - 1.0

Published by abrookins about 9 years ago

Note: This release requires an Intellij product based on IDEA 14.1. This includes PyCharm 4.1, WebStorm 10 and Android Studio 1.3.

  • Support language-specific right margin settings
WrapToColumn - 0.1.4

Published by abrookins about 9 years ago

  • Strip trailing spaces before wrapping
  • Preserve paragraphs within comments