comparison runtime/doc/mbyte.txt @ 714:0f9f4761ad9c v7.0216

updated for version 7.0216
author vimboss
date Mon, 06 Mar 2006 23:29:24 +0000
parents 862863033fdd
children 6beb2c667935
comparison
equal deleted inserted replaced
713:0c381fb7846c 714:0f9f4761ad9c
1 *mbyte.txt* For Vim version 7.0aa. Last change: 2005 Oct 14 1 *mbyte.txt* For Vim version 7.0aa. Last change: 2006 Mar 05
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar et al. 4 VIM REFERENCE MANUAL by Bram Moolenaar et al.
5 5
6 6
1255 Double-width characters are supported. This works best with 'guifontwide' or 1255 Double-width characters are supported. This works best with 'guifontwide' or
1256 'guifontset'. When using only 'guifont' the wide characters are drawn in the 1256 'guifontset'. When using only 'guifont' the wide characters are drawn in the
1257 normal width and a space to fill the gap. Note that the 'guifontset' option 1257 normal width and a space to fill the gap. Note that the 'guifontset' option
1258 is no longer relevant in the GTK+ 2 GUI. 1258 is no longer relevant in the GTK+ 2 GUI.
1259 1259
1260 Up to two combining characters can be used. The combining character is drawn 1260 *mbyte-combining* *mbyte-composing*
1261 on top of the preceding character. When editing text a composing character is 1261 A composing or combining character is used to change the meaning of the
1262 mostly considered part of the preceding character. For example "x" will 1262 character before it. The combining characters are drawn on top of the
1263 delete a character and its following composing characters by default. If the 1263 preceding character.
1264 'delcombine' option is on, then pressing 'x' will delete the combining 1264 Up to two combining characters can be used by default. This can be changed
1265 with the 'maxcombine' option.
1266 When editing text a composing character is mostly considered part of the
1267 preceding character. For example "x" will delete a character and its
1268 following composing characters by default.
1269 If the 'delcombine' option is on, then pressing 'x' will delete the combining
1265 characters, one at a time, then the base character. But when inserting, you 1270 characters, one at a time, then the base character. But when inserting, you
1266 type the first character and the following composing characters separately, 1271 type the first character and the following composing characters separately,
1267 after which they will be joined. The "r" command will not allow you to type a 1272 after which they will be joined. The "r" command will not allow you to type a
1268 combining character, because it doesn't know one is coming. Use "R" instead. 1273 combining character, because it doesn't know one is coming. Use "R" instead.
1269 1274