Skip to content

Releases: abrookins/WrapToColumn

1.9.1

26 Aug 19:12
Compare
Choose a tag to compare
  • 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]

1.9.0

26 Aug 06:49
78f7a54
Compare
Choose a tag to compare
  • 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.

1.7.0

12 Aug 08:51
Compare
Choose a tag to compare
  • 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

1.6.0

10 Aug 06:47
973ab08
Compare
Choose a tag to compare
  • Adds support for SQL comments. Thanks, Elijah Carrel!

1.5.0

10 Aug 06:46
a72d5a9
Compare
Choose a tag to compare
  • Fix plugin XML compatibility with newer Intellij versions.
  • Special thanks to Edgars Irmejs and Aleksei Kniazev for fixes!

1.4.0

14 Dec 19:00
Compare
Choose a tag to compare

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.

1.3.1

13 Jan 05:23
Compare
Choose a tag to compare
  • Fix for "kotlin/jvm/internal/Intrinsics" error found in Intellij 14.1.x-based editors.

1.3.0

18 Dec 05:40
Compare
Choose a tag to compare
  • New feature: Use an optional "minimum raggedness" algorithm. You can enable this in Tools -> Wrap to Column.

1.2.0

11 Dec 19:00
Compare
Choose a tag to compare
  • Reflow text containing tabs based on the configured tab width setting.

1.1.0

07 Dec 06:06
Compare
Choose a tag to compare
  • New feature: Set a column width override in Settings: Tools -> Wrap to Column. Overrides style and global column width settings.