1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-10-27 18:34:58 +03:00
vimr/SwiftNeoVim/CellAttributes.swift
2016-06-27 18:42:34 +02:00

31 lines
764 B
Swift

/**
* Tae Won Ha - http://taewon.de - @hataewon
* See LICENSE
*/
import Cocoa
// The definition can be found in NeoVimUiBridgeProtocol.h
func == (left: CellAttributes, right: CellAttributes) -> Bool {
if left.foreground != right.foreground { return false }
if left.fontTrait != right.fontTrait { return false }
if left.background != right.background { return false }
if left.special != right.special { return false }
return true
}
func != (left: CellAttributes, right: CellAttributes) -> Bool {
return !(left == right)
}
extension CellAttributes: CustomStringConvertible {
public var description: String {
return "CellAttributes<fg: \(String(format: "%x", self.foreground)), bg: \(String(format: "%x", self.background)))"
}
}