comparison src/proto/mbyte.pro @ 21971:0bc43a704f56 v8.2.1535

patch 8.2.1535: it is not possible to specify cell widths of characters Commit: https://github.com/vim/vim/commit/08aac3c6192f0103cb87e280270a32b50e653be1 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 28 21:04:24 2020 +0200 patch 8.2.1535: it is not possible to specify cell widths of characters Problem: It is not possible to specify cell widths of characters. Solution: Add setcellwidths().
author Bram Moolenaar <Bram@vim.org>
date Fri, 28 Aug 2020 21:15:03 +0200
parents cea8ae407452
children 85add08e6a2d
comparison
equal deleted inserted replaced
21970:7c76b6dbc14d 21971:0bc43a704f56
82 int convert_setup_ext(vimconv_T *vcp, char_u *from, int from_unicode_is_utf8, char_u *to, int to_unicode_is_utf8); 82 int convert_setup_ext(vimconv_T *vcp, char_u *from, int from_unicode_is_utf8, char_u *to, int to_unicode_is_utf8);
83 int convert_input(char_u *ptr, int len, int maxlen); 83 int convert_input(char_u *ptr, int len, int maxlen);
84 int convert_input_safe(char_u *ptr, int len, int maxlen, char_u **restp, int *restlenp); 84 int convert_input_safe(char_u *ptr, int len, int maxlen, char_u **restp, int *restlenp);
85 char_u *string_convert(vimconv_T *vcp, char_u *ptr, int *lenp); 85 char_u *string_convert(vimconv_T *vcp, char_u *ptr, int *lenp);
86 char_u *string_convert_ext(vimconv_T *vcp, char_u *ptr, int *lenp, int *unconvlenp); 86 char_u *string_convert_ext(vimconv_T *vcp, char_u *ptr, int *lenp, int *unconvlenp);
87 void f_setcellwidths(typval_T *argvars, typval_T *rettv);
87 /* vim: set ft=c : */ 88 /* vim: set ft=c : */