2.0.2
Micro v2.0.2.
This release contains search and replace improvements, changes to some default options, and bug fixes regarding syntax highlighting and multiple cursors.
- Search and replace improvements:
- Regex capture groups are now supported in the
replacecommand. Examples:> replace "(foo)" "$1-bar" > replace "(foo)" "${1}-bar" > replace "(?P<group>foo)" "$group-bar" > replace "(?P<group>foo)" "$group-bar" > replace "(?P<key>\w+):\s+(?P<value>\w+)$" "$key=$value" - Search and replace will only take effect in the current selection if one exists.
- Regex capture groups are now supported in the
- Option changes:
- New
xtermoption (off by default) to force micro to believe the current terminal isxterm-256color. Please use with caution. - Make
eofnewlineon by default. - Make
autosuoff by default. - Make
fastdirtyoff by default.
- New
- Correct version info for snap builds.
- Bug fixes (and a new test suite for text transformation correctness).