view runtime/keymap/croatian.vim @ 27189:a10936038ec9 v8.2.4123

patch 8.2.4123: complete function cannot be import.Name Commit: https://github.com/vim/vim/commit/15d1635e50896002fbd4ebbc896b78a155b2487d Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jan 17 20:09:08 2022 +0000 patch 8.2.4123: complete function cannot be import.Name Problem: Complete function cannot be import.Name. Solution: Dereference the function name if needed. Also: do not see "import.Name" as a builtin function. (closes #9541)
author Bram Moolenaar <Bram@vim.org>
date Mon, 17 Jan 2022 21:15:02 +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