mirror of
https://github.com/mawww/kakoune.git
synced 2025-01-02 16:53:49 +03:00
use Colors and Attributes are char
This commit is contained in:
parent
98b6618658
commit
227c66cf61
@ -4,7 +4,7 @@
|
||||
namespace Kakoune
|
||||
{
|
||||
|
||||
enum class Color
|
||||
enum class Color : char
|
||||
{
|
||||
Default,
|
||||
Black,
|
||||
|
@ -18,7 +18,7 @@ struct DisplayCoord : LineAndColumn<DisplayCoord, LineCount, CharCount>
|
||||
: LineAndColumn(line, column) {}
|
||||
};
|
||||
|
||||
typedef int Attribute;
|
||||
typedef char Attribute;
|
||||
|
||||
enum Attributes
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user