#ifndef unicode_hh_INCLUDED #define unicode_hh_INCLUDED #include #include namespace Kakoune { using Codepoint = char32_t; inline bool is_eol(Codepoint c) { return c == '\n'; } inline bool is_horizontal_blank(Codepoint c) { return c == ' ' or c == '\t'; } inline bool is_blank(Codepoint c) { return c == ' ' or c == '\t' or c == '\n'; } enum WordType { Word, WORD }; template inline bool is_word(Codepoint c) { return c == '_' or std::isalnum((wchar_t)c, std::locale{}); } template<> inline bool is_word(Codepoint c) { return not is_horizontal_blank(c) and not is_eol(c); } inline bool is_punctuation(Codepoint c) { return not (is_word(c) or is_horizontal_blank(c) or is_eol(c)); } inline bool is_basic_alpha(Codepoint c) { return (c >= 'a' and c <= 'z') or (c >= 'A' and c <= 'Z'); } enum class CharCategories { Blank, EndOfLine, Word, Punctuation, }; template inline CharCategories categorize(Codepoint c) { if (is_eol(c)) return CharCategories::EndOfLine; if (is_horizontal_blank(c)) return CharCategories::Blank; if (word_type == WORD or is_word(c)) return CharCategories::Word; return CharCategories::Punctuation; } inline Codepoint to_lower(Codepoint cp) { return std::tolower((wchar_t)cp, std::locale{}); } inline Codepoint to_upper(Codepoint cp) { return std::toupper((wchar_t)cp, std::locale{}); } inline char to_lower(char c) { return c >= 'A' and c <= 'Z' ? c - 'A' + 'a' : c; } inline char to_upper(char c) { return c >= 'a' and c <= 'z' ? c - 'a' + 'A' : c; } } #endif // unicode_hh_INCLUDED