micro-editor v2.0.2 Release Notes

Release Date: 2020-02-26 // about 4 years ago
  • 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 replace command. Examples:

      replace "(foo)" "$1-bar" replace "(foo)" "${1}-bar" replace "(?Pfoo)" "$group-bar" replace "(?Pfoo)" "$group-bar" replace "(?P\w+):\s+(?P\w+)$" "$key=$value"

      • Search and replace will only take effect in the current selection if one exists.
    • Option changes:

      • New xterm option (off by default) to force micro to believe the current terminal is xterm-256color. Please use with caution.
      • Make eofnewline on by default.
      • Make autosu off by default.
      • Make fastdirty off by default.
    • ๐Ÿ— Correct version info for snap builds.

    • ๐Ÿ› Bug fixes (and a new test suite for text transformation correctness).