diff options
Diffstat (limited to 'src/nvim/mbyte.c')
-rw-r--r-- | src/nvim/mbyte.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/nvim/mbyte.c b/src/nvim/mbyte.c index 1cf045d7e0..5ed2b4c564 100644 --- a/src/nvim/mbyte.c +++ b/src/nvim/mbyte.c @@ -4,9 +4,8 @@ /// mbyte.c: Code specifically for handling multi-byte characters. /// Multibyte extensions partly by Sung-Hoon Baek /// -/// The encoding used in nvim is always UTF-8. "enc_utf8" and "has_mbyte" is -/// thus always true. "enc_dbcs" is always zero. The 'encoding' option is -/// read-only and always reads "utf-8". +/// Strings internal to Nvim are always encoded as UTF-8 (thus the legacy +/// 'encoding' option is always "utf-8"). /// /// The cell width on the display needs to be determined from the character /// value. Recognizing UTF-8 bytes is easy: 0xxx.xxxx is a single-byte char, |