mirror of
https://github.com/zyedidia/micro.git
synced 2026-03-11 15:12:47 +09:00
See https://golang.org/pkg/regexp/syntax/ for the supported syntax. Here are some 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" ``` Closes #1115