From: ThanhNguyxn Date: Sun, 25 Jan 2026 15:58:33 +0000 (+0000) Subject: runtime: convert *_utf-8.vim files to actual UTF-8 encoding X-Git-Tag: v9.1.2110~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5c855ce43d5d045b81301472cdac397efafa7723;p=thirdparty%2Fvim.git runtime: convert *_utf-8.vim files to actual UTF-8 encoding Several runtime files with "_utf-8" in their filename are actually encoded in latin1 or cp1255, not UTF-8. This causes errors when tools attempt to read these files as UTF-8. Files converted: - esperanto_utf-8.vim: latin1 -> UTF-8, updated scriptencoding directive - greek_utf-8.vim: latin1 -> UTF-8 - hebrewp_utf-8.vim: cp1255 (Windows Hebrew) -> UTF-8 - menu_ca.utf-8.vim: latin1 -> UTF-8 - menu_ca_es.utf-8.vim: latin1 -> UTF-8 - menu_pt_pt.utf-8.vim: latin1 -> UTF-8 The actual functionality remains unchanged - only the encoding was modified. closes: #16390 Signed-off-by: ThanhNguyxn Signed-off-by: Christian Brabandt --- diff --git a/runtime/keymap/esperanto_utf-8.vim b/runtime/keymap/esperanto_utf-8.vim index 3d335cb249..2910a6f080 100644 --- a/runtime/keymap/esperanto_utf-8.vim +++ b/runtime/keymap/esperanto_utf-8.vim @@ -7,7 +7,7 @@ " " All keys same as usual, except: " ^ followed by any of CcGgHhJjSs adds a circumflex on top of the letter -" ù and Ù replaces the grave accent by a breve +" ù and Ù replaces the grave accent by a breve " any of CcGgHhJjSsUu followed by X or x maps to consonant with ^ or Uu with " breve. @@ -21,7 +21,7 @@ let b:keymap_name = "Eo" " digraph C> 0x0108 c> 0x0109 G> 0x011C g> 0x011D H> 0x0124 h> 0x0125 " digraph J> 0x0134 j> 0x0135 S> 0x015C s> 0x015D U( 0x016C u( 0x016D -scriptencoding latin1 +scriptencoding utf-8 loadkeymap @@ -35,8 +35,8 @@ loadkeymap ^j " (309) LOWERCASE j WITH CIRCUMFLEX ^S " (348) UPPERCASE S WITH CIRCUMFLEX ^s " (349) LOWERCASE s WITH CIRCUMFLEX -Ù " (364) UPPERCASE U WITH BREVE -ù " (365) LOWERCASE u WITH BREVE +Ù " (364) UPPERCASE U WITH BREVE +ù " (365) LOWERCASE u WITH BREVE CX " (264) UPPERCASE C WITH CIRCUMFLEX Cx " (264) UPPERCASE C WITH CIRCUMFLEX diff --git a/runtime/keymap/greek_utf-8.vim b/runtime/keymap/greek_utf-8.vim index c6cc32563e..15292e9870 100644 --- a/runtime/keymap/greek_utf-8.vim +++ b/runtime/keymap/greek_utf-8.vim @@ -557,8 +557,8 @@ v| " GREEK SMALL LETTER OMEGA WITH YPOGEGRAMMENI " " " Greek Quotes if your keyboard supports them -´ " QUOTEDBLLEFT -ª " QUOTEDBLRIGHT +´ " QUOTEDBLLEFT +ª " QUOTEDBLRIGHT " " " diff --git a/runtime/keymap/hebrewp_utf-8.vim b/runtime/keymap/hebrewp_utf-8.vim index dded60e365..526174a3ac 100644 --- a/runtime/keymap/hebrewp_utf-8.vim +++ b/runtime/keymap/hebrewp_utf-8.vim @@ -6,33 +6,33 @@ " Use this short name in the status line. let b:keymap_name = "hebp" loadkeymap -w " ù - shin -n " ð - nun -b " á - bet -g " â - gimel -q " ÷ - qof -k " ë - kaf -g " ò - ayin -y " é - yod -N " ï - final nun -j " ç - het -l " ì - lamed -K " ê - final kaf -x " ö - tsadi -m " î - mem -M " í - final mem -p " ô - pe -r " ø - resh -d " ã - dalet -a " à - alef -v " å - vav -h " ä - he -s " ñ - samekh -T " è - tet -z " æ - zayin -t " ú - tav -X " õ - final tsadi -P " ó - final pe +w " ש - shin +n " ×  - nun +b " ב - bet +g " ג - gimel +q " ×§ - qof +k " כ - kaf +g " ×¢ - ayin +y " י - yod +N " ן - final nun +j " ח - het +l " ל - lamed +K " ך - final kaf +x " צ - tsadi +m " מ - mem +M " ם - final mem +p " פ - pe +r " ר - resh +d " ד - dalet +a " א - alef +v " ו - vav +h " ה - he +s " ס - samekh +T " ט - tet +z " ז - zayin +t " ת - tav +X " ×¥ - final tsadi +P " ×£ - final pe A: " sheva HE " hataf segol HA " hataf patah @@ -47,7 +47,7 @@ U " qubuts D " dagesh ]T " meteg ]Q " maqaf -]R <ÌChar-0x5bf> " rafe +]R <Ö¼Char-0x5bf> " rafe ]p " paseq SR " shin-dot SL " sin-dot diff --git a/runtime/lang/menu_ca.utf-8.vim b/runtime/lang/menu_ca.utf-8.vim index 23ee10da9a..7e0ecf3d1f 100644 --- a/runtime/lang/menu_ca.utf-8.vim +++ b/runtime/lang/menu_ca.utf-8.vim @@ -1,6 +1,6 @@ " Menu translations for Catalan " -" Maintainer: Ernest Adrogué +" Maintainer: Ernest Adrogué " Last Change: 29 Dec 2003 " source :p:h/menu_ca_es.latin1.vim diff --git a/runtime/lang/menu_ca_es.utf-8.vim b/runtime/lang/menu_ca_es.utf-8.vim index 23ee10da9a..7e0ecf3d1f 100644 --- a/runtime/lang/menu_ca_es.utf-8.vim +++ b/runtime/lang/menu_ca_es.utf-8.vim @@ -1,6 +1,6 @@ " Menu translations for Catalan " -" Maintainer: Ernest Adrogué +" Maintainer: Ernest Adrogué " Last Change: 29 Dec 2003 " source :p:h/menu_ca_es.latin1.vim diff --git a/runtime/lang/menu_pt_pt.utf-8.vim b/runtime/lang/menu_pt_pt.utf-8.vim index 7fc73d14e7..e8ab62da68 100644 --- a/runtime/lang/menu_pt_pt.utf-8.vim +++ b/runtime/lang/menu_pt_pt.utf-8.vim @@ -1,3 +1,3 @@ -" Menu Translations: Português +" Menu Translations: Português source :p:h/menu_pt_pt.vim