1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-18 11:11:34 +03:00
vimr/NvimView/DrawerPerf/FontTrait.swift

17 lines
347 B
Swift
Raw Normal View History

2019-03-10 11:50:24 +03:00
/**
* Tae Won Ha - http://taewon.de - @hataewon
* See LICENSE
*/
2019-03-10 11:32:53 +03:00
import Foundation
struct FontTrait: OptionSet {
let rawValue: UInt
static let italic = FontTrait(rawValue: 1 << 0)
static let bold = FontTrait(rawValue: 1 << 1)
static let underline = FontTrait(rawValue: 1 << 2)
static let undercurl = FontTrait(rawValue: 1 << 3)
}