Releases: abrookins/WrapToColumn
Releases · abrookins/WrapToColumn
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_EDT
is 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.