summaryrefslogtreecommitdiffstats
path: root/runtime/keymap/polish-slash.vim
blob: 1a2f18c6601acfe0492750e1e243d641784c7e6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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/polish-slash_utf-8.vim
elseif encoding == 'cp1250'
	source <sfile>:p:h/polish-slash_cp1250.vim
elseif encoding == 'iso-8859-2'
	source <sfile>:p:h/polish-slash_iso-8859-2.vim
else
	source <sfile>:p:h/polish-slash_cp852.vim
endif