UpdateModTime updates the modtime of this file
()
| 590 | |
| 591 | // UpdateModTime updates the modtime of this file |
| 592 | func (b *Buffer) UpdateModTime() (err error) { |
| 593 | b.ModTime, err = util.GetModTime(b.Path) |
| 594 | return |
| 595 | } |
| 596 | |
| 597 | // ReOpen reloads the current buffer from disk |
| 598 | func (b *Buffer) ReOpen() error { |
no test coverage detected