diff --git a/cmd/micro/buffer.go b/cmd/micro/buffer.go index 5d4f9b74..238e1887 100644 --- a/cmd/micro/buffer.go +++ b/cmd/micro/buffer.go @@ -79,7 +79,7 @@ func (b *Buffer) SaveAs(filename string) error { data := []byte(b.String()) err := ioutil.WriteFile(filename, data, 0644) if err == nil { - b.IsModified = true + b.IsModified = false } return err } diff --git a/runtime/help/help.md b/runtime/help/help.md index 7749726d..f18a5461 100644 --- a/runtime/help/help.md +++ b/runtime/help/help.md @@ -73,8 +73,8 @@ Here are the defaults: ```json { - "Up": "CursorDown", - "Down": "CursorUp", + "Up": "CursorUp", + "Down": "CursorDown", "Right": "CursorRight", "Left": "CursorLeft", "ShiftUp": "SelectUp",