mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 11:37:32 +03:00
17 lines
309 B
Swift
17 lines
309 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 neoVimStopped()
|
|
func set(title: String)
|
|
func set(dirtyStatus: Bool)
|
|
func cwdChanged()
|
|
func bufferListChanged()
|
|
}
|