Mercurial > vim
view src/libvterm/src/utf8.h @ 18448:35e0ab1f2975 v8.1.2218
patch 8.1.2218: "gN" is off by one in Visual mode
Commit: https://github.com/vim/vim/commit/453c19257f6d97904ec2e3823e88e63c983f2f9a
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Oct 26 14:42:09 2019 +0200
patch 8.1.2218: "gN" is off by one in Visual mode
Problem: "gN" is off by one in Visual mode.
Solution: Check moving forward. (Christian Brabandt, https://github.com/vim/vim/issues/5075)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 26 Oct 2019 14:45:03 +0200 |
parents | 811a12a78164 |
children | a4652d7ec99f |
line wrap: on
line source
/* The following functions copied and adapted from libtermkey * * http://www.leonerd.org.uk/code/libtermkey/ */ unsigned int utf8_seqlen(long codepoint); #if defined(DEFINE_INLINES) || USE_INLINE INLINE unsigned int utf8_seqlen(long codepoint) { if(codepoint < 0x0000080) return 1; if(codepoint < 0x0000800) return 2; if(codepoint < 0x0010000) return 3; if(codepoint < 0x0200000) return 4; if(codepoint < 0x4000000) return 5; return 6; } #endif // Does NOT NUL-terminate the buffer int fill_utf8(long codepoint, char *str); #if defined(DEFINE_INLINES) || USE_INLINE INLINE int fill_utf8(long codepoint, char *str) { int nbytes = utf8_seqlen(codepoint); // This is easier done backwards int b = nbytes; while(b > 1) { b--; str[b] = 0x80 | (codepoint & 0x3f); codepoint >>= 6; } switch(nbytes) { case 1: str[0] = (codepoint & 0x7f); break; case 2: str[0] = 0xc0 | (codepoint & 0x1f); break; case 3: str[0] = 0xe0 | (codepoint & 0x0f); break; case 4: str[0] = 0xf0 | (codepoint & 0x07); break; case 5: str[0] = 0xf8 | (codepoint & 0x03); break; case 6: str[0] = 0xfc | (codepoint & 0x01); break; } return nbytes; } #endif // end copy