Home
last modified time | relevance | path

Searched refs:skipcc (Results 1 – 3 of 3) sorted by relevance

/vim-8.2.3635/src/
H A Dstrings.c1162 varnumber_T skipcc = FALSE; in f_strchars() local
1170 skipcc = tv_get_bool(&argvars[1]); in f_strchars()
1171 if (skipcc < 0 || skipcc > 1) in f_strchars()
1172 semsg(_(e_using_number_as_bool_nr), skipcc); in f_strchars()
1174 strchar_common(argvars, rettv, skipcc); in f_strchars()
1225 int skipcc = FALSE; in f_strcharpart() local
1247 skipcc = tv_get_bool(&argvars[3]); in f_strcharpart()
1248 if (skipcc < 0 || skipcc > 1) in f_strcharpart()
1250 semsg(_(e_using_number_as_bool_nr), skipcc); in f_strcharpart()
1258 if (skipcc) in f_strcharpart()
[all …]
/vim-8.2.3635/runtime/doc/
H A Deval.txt3020 strcharpart({str}, {start} [, {len} [, {skipcc}]])
10809 When {skipcc} is omitted or zero, composing characters are
10811 When {skipcc} set to 1, Composing characters are ignored,
10823 strchars({string} [, {skipcc}]) *strchars()*
10826 When {skipcc} is omitted or zero, composing characters are
10828 When {skipcc} set to 1, Composing characters are ignored.
10833 {skipcc} is only available after 7.4.755. For backward
10836 function s:strchars(str, skipcc)
10837 return strchars(a:str, a:skipcc)
10840 function s:strchars(str, skipcc)
[all …]
H A Dversion8.txt4971 Solution: Add the skipcc argument to strchars(). (Hirohito Higashi, Ken