view runtime/keymap/croatian.vim @ 17610:c08a3c552c1d v8.1.1802

patch 8.1.1802: missing change to call_callback() commit https://github.com/vim/vim/commit/b2129068a55261bea1e293a6a1ce8491a03e7de6 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Aug 3 18:31:11 2019 +0200 patch 8.1.1802: missing change to call_callback() Problem: Missing change to call_callback(). Solution: Add missing change.
author Bram Moolenaar <Bram@vim.org>
date Sat, 03 Aug 2019 18:45:05 +0200
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