Phạm Bình An | 189e24b | 2024-12-03 21:59:52 +0100 | [diff] [blame^] | 1 | *vietnamese.txt* For Vim version 9.1. Last change: 2024 Dec 02 |
| 2 | |
| 3 | |
| 4 | VIM REFERENCE MANUAL by Phạm Bình An |
| 5 | |
| 6 | |
| 7 | Vietnamese language support in Vim *vietnamese* *Vietnamese* |
| 8 | |
| 9 | 1. Introduction |vietnamese-intro| |
| 10 | 2. Vietnamese keymaps |vietnamese-keymap| |
| 11 | 3. Localization |vietnamese-l18n| |
| 12 | |
| 13 | =============================================================================== |
| 14 | 1. Introduction |
| 15 | *vietnamese-intro* |
| 16 | |
| 17 | Vim supports Vietnamese language in the following ways: |
| 18 | |
| 19 | - Built-in |vietnamese-keymap|, which allows you to type Vietnamese characters |
| 20 | in |Insert-mode| and |search-commands| using US keyboard layout. |
| 21 | - Localization in Vietnamese. See |vietnamese-l18n| |
| 22 | |
| 23 | =============================================================================== |
| 24 | 2. Vietnamese keymaps |
| 25 | *vietnamese-keymap* |
| 26 | |
| 27 | To switch between languages you can use your system native keyboard switcher, |
| 28 | or use one of the Vietnamese keymaps included in the Vim distribution, like |
| 29 | below > |
| 30 | :set keymap=vietnamese-telex_utf-8 |
| 31 | < |
| 32 | See |'keymap'| for more information. |
| 33 | |
| 34 | In the latter case, you can type Vietnamese even if you do not have a |
| 35 | Vietnamese input method engine (IME) or you want Vim to be independent from a |
| 36 | system-wide keyboard settings (when |'imdisable'| is set). You can also |:map| |
| 37 | a key to switch between keyboards. |
| 38 | |
| 39 | Vim comes with the following Vietnamese keymaps: |
| 40 | - *vietnamese-telex_utf-8* Telex input method, |UTF-8| encoding. |
| 41 | - *vietnamese-viqr_utf-8* VIQR input method, |UTF-8| encoding. |
| 42 | - *vietnamese-vni_utf-8* VNI input method, |UTF-8| encoding. |
| 43 | |
| 44 | *vietnamese-ime_diff* |
| 45 | |
| 46 | Since these keymaps were designed to be minimalistic, they do not support all |
| 47 | features of the corresponding input methods. The differences are described |
| 48 | below: |
| 49 | |
| 50 | - You can only type each character individually, entering the base letter first |
| 51 | and then the diacritics later. For example, to type the word `nến` using |
| 52 | |vietnamese-vni_utf-8|, you must type `ne61n`, not `nen61` or `ne6n1` |
| 53 | - For characters with more than 1 diacritic, you need to type vowel mark before |
| 54 | tone mark. For example, to type `ồ` using |vietnamese-telex_utf-8|, you need |
| 55 | to type `oof`, not `ofo`. |
| 56 | - With |vietnamese-telex_utf-8|, you need to type all uppercase letters to |
| 57 | produce uppercase characters with diacritics. For example, `Ừ` must be typed |
| 58 | as `UWF`. |
| 59 | - With |vietnamese-telex_utf-8|, the escape character `\` from VNI is added, |
| 60 | hence the confusing `ooo` input to type `oo` is removed, which could lead to |
| 61 | ambiguities. For example, to type the word `Đoòng`, you would type |
| 62 | `DDo\ofng`. |
| 63 | - Simple Telex (both v1 and v2), including the `w[]{}` style, is not |
| 64 | supported. |
| 65 | - Removing diacritics using `z` in Telex or `0` in VNI and VIQR is not supported. |
| 66 | |
| 67 | =============================================================================== |
| 68 | 3. Localization |
| 69 | *vietnamese-l18n* |
| 70 | |
| 71 | Vim |messages| are also available in Vietnamese. If you wish to see messages in |
| 72 | Vietnamese, you can run the command |:language| with an argument being the name |
| 73 | of the Vietnamese locale. For example, > |
| 74 | :language vi_VN |
| 75 | < or > |
| 76 | :language vi_VN.utf-8 |
| 77 | < |
| 78 | Note that the name of the Vietnamese locale may vary depending on your system. |
| 79 | See |mbyte-first| for details. |
| 80 | |
| 81 | |vimtutor| is also available in Vietnamese. To start Vimtutor in Vietnamese, |
| 82 | run the following command in terminal: >sh |
| 83 | vimtutor vi |
| 84 | < |
| 85 | =============================================================================== |
| 86 | vim:tw=78:ts=8:noet:ft=help:norl: |