Conversation
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add support for extended grapheme clusters (egcs).
To facilitate egcs, the
Celltype was changed from:to
The
"style"field is now a bit field of the SGR parameters of a terminal cell. The style int flags are given by:The
"ord"field now stores the unicode codepoint for a cell or, if the cell is an extended grapheme cluster (egc), an index into a pool of egcs (plusEGC_BASEto mark the codepoint as an egc;EGC_BASEis greater thansys.maxunicode).Additional changes:
Textgadgets now have acharsproperty that re-views the"ord"field of their canvas as unicode strings to allow characters to be directly added to their canvas as before, e.g.,Textcanvas, use the new functiontext_tools.egc_ord, e.g.,text_tools.add_textorText.add_strinstead which now account for egcs, e.g.,egc_ordis also provided intext_tools,egc_char.uwcwidthandugraphemeand dropped the customchar_widthandstr_widthfunctions.