1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-25 06:06:21 +03:00
vimr/SwiftNeoVim/NeoVimViewDelegate.swift
Tae Won Ha 1451b0ba72
GH-339 Pass through current buffer changed event
- ignore cursor events to avoid slowing down scrolling...
2016-12-20 00:01:59 +01:00

20 lines
380 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()
func currentBufferChanged()
func ipcBecameInvalid(reason: String)
}