view runtime/keymap/slovak.vim @ 8202:c16aa03d8db5 v7.4.1394

commit https://github.com/vim/vim/commit/0b962473ddc7cee3cb45253dea273573bcca9bf9 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Feb 22 22:51:33 2016 +0100 patch 7.4.1394 Problem: Can't sort inside a sort function. Solution: Use a struct to store the sort parameters. (Jacob Niehus)
author Christian Brabandt <cb@256bit.org>
date Mon, 22 Feb 2016 23:00:05 +0100
parents 3fc0f57ecb91
children
line wrap: on
line source

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

if encoding == 'utf-8'
	source <sfile>:p:h/slovak_utf-8.vim
elseif encoding == 'cp1250'
	source <sfile>:p:h/slovak_cp1250.vim
else
	source <sfile>:p:h/slovak_iso-8859-2.vim
endif