isOpen returns true if file is flagged as open
()
| 260 | |
| 261 | // isOpen returns true if file is flagged as open |
| 262 | func (fn *Node) isOpen() bool { |
| 263 | return !fn.Closed |
| 264 | } |
| 265 | |
| 266 | // IsNotSaved returns true if the file is open and has been changed (edited) since last Save |
| 267 | func (fn *Node) IsNotSaved() bool { |
no outgoing calls
no test coverage detected