mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-28 02:54:31 +03:00
13 lines
190 B
Swift
13 lines
190 B
Swift
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
import Cocoa
|
|
|
|
public protocol NeoVimViewDelegate {
|
|
|
|
func setTitle(title: String)
|
|
func resizeToSize(size: CGSize)
|
|
}
|