Skip to content

Releases: abrookins/WrapToColumn

1.9.4

22 Jan 21:16
ca854fa

Choose a tag to compare

What's Changed

  • Fixed wrapping for comments with tab indentation (#73)
  • Fixed inline comments adding extraneous newlines (#74)
  • Fixed selections ending with multiple newlines adding an extra newline

Thanks to @Grimeh for the fix!

Full Changelog: 1.9.3...1.9.4

v1.9.3

07 Jan 17:21

Choose a tag to compare

What's New in 1.9.3

Bug Fixes

  • Fixed wrapping code with inline comments - Previously, wrapping text like int aa = 0; // comment followed by pure comment lines would remove the // markers from continuation lines. Now such mixed code+comment selections are left unchanged. (Issue #72, thanks @edgarsi!)
  • Fixed Python docstring wrapping - Docstrings with content on the same line as the opening """ or ''' now wrap correctly without adding incorrect * prefixes. (Issue #65, thanks @edgarsi!)

New Features

  • Rust parent line comments - Added support for wrapping Rust documentation comments that use //! syntax. (Issue #52, thanks @mshroyer!)
  • Column width override restored - The optional column width override setting in Tools → Wrap to Column is working again. (Issue #68, thanks @Grimeh!)

Contributors

Thanks to @edgarsi, @mshroyer, and @Grimeh for their contributions!


Installation: Download WrapToColumn-1.9.3.zip and install via Settings → Plugins → ⚙️ → Install Plugin from Disk.

1.9.2

25 Mar 15:41

Choose a tag to compare

  • Fixes #64, a bug that caused the settings panel to fail to load

1.9.1

26 Aug 19:12

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

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

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

Choose a tag to compare

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

1.5.0

10 Aug 06:46
a72d5a9

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

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

Choose a tag to compare

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