mirror of
https://github.com/Hopiu/micro.git
synced 2026-03-31 13:20:29 +00:00
Merge
This commit is contained in:
commit
3d1fb69c15
2 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
|
|
@ -73,8 +73,8 @@ Here are the defaults:
|
|||
|
||||
```json
|
||||
{
|
||||
"Up": "CursorDown",
|
||||
"Down": "CursorUp",
|
||||
"Up": "CursorUp",
|
||||
"Down": "CursorDown",
|
||||
"Right": "CursorRight",
|
||||
"Left": "CursorLeft",
|
||||
"ShiftUp": "SelectUp",
|
||||
|
|
|
|||
Loading…
Reference in a new issue