view runtime/keymap/croatian.vim @ 18894:aad0d64cc133 v8.2.0008

patch 8.2.0008: test72 is old style Commit: https://github.com/vim/vim/commit/3e2d1c8cd61ca073e680f3b221ce887e05ba39cf Author: Bram Moolenaar <Bram@vim.org> Date: Sat Dec 14 20:35:01 2019 +0100 patch 8.2.0008: test72 is old style Problem: Test72 is old style. Solution: Convert to new style test. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/5362)
author Bram Moolenaar <Bram@vim.org>
date Sat, 14 Dec 2019 20:45:04 +0100
parents 18ee39301b82
children
line wrap: on
line source

let s:encoding = &enc
if s:encoding == 'latin1'
    if has("unix")
	let s:encoding = 'iso-8859-2'
    else
	let s:encoding = 'cp1250'
    endif
endif

if s:encoding == 'utf-8'
	source <sfile>:p:h/croatian_utf-8.vim
elseif s:encoding == 'cp1250'
	source <sfile>:p:h/croatian_cp1250.vim
else
	source <sfile>:p:h/croatian_iso-8859-2.vim
endif