1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-10-27 10:23:12 +03:00
vimr/SwiftNeoVim/CellAttributes.swift
2016-10-24 23:03:58 +02:00

35 lines
855 B
Swift

/**
* Tae Won Ha - http://taewon.de - @hataewon
* See LICENSE
*/
import Cocoa
// The definition can be found in NeoVimUiBridgeProtocol.h
public 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
}
extension CellAttributes: CustomStringConvertible, Equatable {
public var description: String {
return "CellAttributes<fg: \(String(format: "%x", self.foreground)), bg: \(String(format: "%x", self.background)))"
}
public var inverted: CellAttributes {
var result = self
result.background = self.foreground
result.foreground = self.background
return result
}
}