mirror of
https://github.com/qvacua/vimr.git
synced 2024-12-26 15:25:14 +03:00
16 lines
294 B
Swift
16 lines
294 B
Swift
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
import Cocoa
|
|
|
|
// See http://stackoverflow.com/a/24104371 for class
|
|
public protocol NeoVimViewDelegate: class {
|
|
|
|
func setTitle(title: String)
|
|
func setDirtyStatus(dirty: Bool)
|
|
func cwdChanged()
|
|
func neoVimStopped()
|
|
}
|