1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-24 11:37:32 +03:00
vimr/SwiftNeoVim/NeoVimViewDelegate.swift

16 lines
284 B
Swift
Raw Normal View History

/**
* Tae Won Ha - http://taewon.de - @hataewon
* See LICENSE
*/
import Cocoa
// See http://stackoverflow.com/a/24104371 for class
public protocol NeoVimViewDelegate: class {
2016-09-27 01:17:53 +03:00
func set(title: String)
func set(dirtyStatus: Bool)
2016-09-07 21:12:18 +03:00
func cwdChanged()
func neoVimStopped()
}