-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
No color flag and Lux updated to 0.3.6
- Loading branch information
Showing
12 changed files
with
66 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
struct JsonColors: Codable { | ||
var punctuation: Int? = nil | ||
var keyName: Int? = nil | ||
var keyValue: Int? = nil | ||
var punctuation: Int? | ||
var keyName: Int? | ||
var keyValue: Int? | ||
} | ||
|
||
struct PlistColors: Codable { | ||
var tag: Int? = nil | ||
var keyName: Int? = nil | ||
var keyValue: Int? = nil | ||
var header: Int? = nil | ||
var comment: Int? = nil | ||
var tag: Int? | ||
var keyName: Int? | ||
var keyValue: Int? | ||
var header: Int? | ||
var comment: Int? | ||
} | ||
|
||
struct XmlColors: Codable { | ||
var punctuation: Int? = nil | ||
var openingTag: Int? = nil | ||
var closingTag: Int? = nil | ||
var key: Int? = nil | ||
var header: Int? = nil | ||
var comment: Int? = nil | ||
var punctuation: Int? | ||
var openingTag: Int? | ||
var closingTag: Int? | ||
var key: Int? | ||
var header: Int? | ||
var comment: Int? | ||
} | ||
|
||
/// Plist file to specify custom colors | ||
struct ColorFile: Codable { | ||
var json: JsonColors? = nil | ||
var plist: PlistColors? = nil | ||
var xml: XmlColors? = nil | ||
var json: JsonColors? | ||
var plist: PlistColors? | ||
var xml: XmlColors? | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters