Save saves the buffer to its default path
()
| 214 | |
| 215 | // Save saves the buffer to its default path |
| 216 | func (b *Buffer) Save() error { |
| 217 | return b.SaveAs(b.Path) |
| 218 | } |
| 219 | |
| 220 | // AutoSave saves the buffer to its default path |
| 221 | func (b *Buffer) AutoSave() error { |