Releases: abrookins/WrapToColumn
Releases · abrookins/WrapToColumn
1.9.4
v1.9.3
What's New in 1.9.3
Bug Fixes
- Fixed wrapping code with inline comments - Previously, wrapping text like
int aa = 0; // commentfollowed 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
1.9.1
- 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_EDTis deprecated and going to be removed soon. 'com.andrewbrookins.idea.wrap.WrapAction' must overridegetActionUpdateThread()and chose EDT or BGT. See ActionUpdateThread javadoc. [Plugin: com.andrewbrookins.wrap_to_column]
1.9.0
- 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
- 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
1.5.0
1.4.0
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.