]> git.ipfire.org Git - thirdparty/vim.git/commit
runtime: convert *_utf-8.vim files to actual UTF-8 encoding
authorThanhNguyxn <thanhnguyentuan2007@gmail.com>
Sun, 25 Jan 2026 15:58:33 +0000 (15:58 +0000)
committerChristian Brabandt <cb@256bit.org>
Sun, 25 Jan 2026 15:58:33 +0000 (15:58 +0000)
commit5c855ce43d5d045b81301472cdac397efafa7723
treef1ff5854d7cd2223d16e77e96baa6e610ff13a5d
parente914ada32334af67604c9791aa4149a74ab0d1eb
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 <thanhnguyentuan2007@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/keymap/esperanto_utf-8.vim
runtime/keymap/greek_utf-8.vim
runtime/keymap/hebrewp_utf-8.vim
runtime/lang/menu_ca.utf-8.vim
runtime/lang/menu_ca_es.utf-8.vim
runtime/lang/menu_pt_pt.utf-8.vim