comparison runtime/doc/mbyte.txt @ 17372:b9bc47742df6

Update runtime files commit https://github.com/vim/vim/commit/396e829fa355ebc92a618ef18266a3fed71b7042 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jul 13 23:04:31 2019 +0200 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Sat, 13 Jul 2019 23:15:05 +0200
parents 0e473e9e70c2
children af69c9335223
comparison
equal deleted inserted replaced
17371:1062026cb98c 17372:b9bc47742df6
1 *mbyte.txt* For Vim version 8.1. Last change: 2019 Apr 28 1 *mbyte.txt* For Vim version 8.1. Last change: 2019 Jul 04
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
941 To input multibyte characters on Windows, you can use an Input Method Editor 941 To input multibyte characters on Windows, you can use an Input Method Editor
942 (IME). In process of your editing text, you must switch status (on/off) of 942 (IME). In process of your editing text, you must switch status (on/off) of
943 IME many many many times. Because IME with status on is hooking all of your 943 IME many many many times. Because IME with status on is hooking all of your
944 key inputs, you cannot input 'j', 'k', or almost all of keys to Vim directly. 944 key inputs, you cannot input 'j', 'k', or almost all of keys to Vim directly.
945 945
946 This |+multi_byte_ime| feature help this. It reduce times of switch status of 946 The |+multi_byte_ime| feature helps for this. It reduces the number of times
947 IME manually. In normal mode, there are almost no need working IME, even 947 the IME status has to be switched manually. In Normal mode, there is almost
948 editing multibyte text. So exiting insert mode with ESC, Vim memorize last 948 no need to use IME, even when editing multibyte text. So when exiting Insert
949 status of IME and force turn off IME. When re-enter insert mode, Vim revert 949 mode, Vim memorizes the last status of IME and turns off IME. When
950 IME status to that memorized automatically. 950 re-entering Insert mode, Vim sets the IME status to that memorized status
951 automatically.
951 952
952 This works on not only insert-normal mode, but also search-command input and 953 This works on not only insert-normal mode, but also search-command input and
953 replace mode. 954 replace mode.
954 The options 'iminsert', 'imsearch' and 'imcmdline' can be used to chose 955 The options 'iminsert', 'imsearch' and 'imcmdline' can be used to chose
955 the different input methods or disable them temporarily. 956 the different input methods or disable them temporarily.