mirror of
https://github.com/zyedidia/micro.git
synced 2026-03-29 06:12:35 +09:00
Add the text member back.
It seems rope.Report is not acting how I expected it to. I need to look into this in more detail but for now I am adding the Text variable back to the Buffer. Fixes #98
This commit is contained in:
@@ -141,7 +141,7 @@ func HandleCommand(input string, view *View) {
|
||||
|
||||
found := false
|
||||
for {
|
||||
match := regex.FindStringIndex(view.Buf.String())
|
||||
match := regex.FindStringIndex(view.Buf.Text)
|
||||
if match == nil {
|
||||
break
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user