mirror of
https://github.com/zyedidia/micro.git
synced 2026-03-29 22:27:13 +09:00
exit conditional replace if no match is left
This commit is contained in:
@@ -291,6 +291,9 @@ func Replace(args []string) {
|
|||||||
for {
|
for {
|
||||||
// The 'check' flag was used
|
// The 'check' flag was used
|
||||||
Search(search, view, true)
|
Search(search, view, true)
|
||||||
|
if !view.Cursor.HasSelection() {
|
||||||
|
break
|
||||||
|
}
|
||||||
view.Relocate()
|
view.Relocate()
|
||||||
if view.Buf.Settings["syntax"].(bool) {
|
if view.Buf.Settings["syntax"].(bool) {
|
||||||
view.matches = Match(view)
|
view.matches = Match(view)
|
||||||
|
|||||||
Reference in New Issue
Block a user