1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-27 15:53:31 +03:00
vimr/SwiftNeoVim/NeoVimViewDelegate.swift
Tae Won Ha a236b2c16a
GH-232 Launch neovim synchronously.
- The agent waits till neovim has finished launching. This makes many
  things easier...
2016-08-21 18:43:21 +02:00

15 lines
274 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 neoVimStopped()
}