1
0
Fork 0
mirror of https://github.com/vim/vim synced 2025-03-21 17:25:11 +01:00
vim/runtime/keymap/hebrewp.vim

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
325 B
VimL
Raw Normal View History

2004-06-13 20:20:40 +00:00
let encoding = &enc
if encoding == 'latin1'
if has("unix")
let encoding = 'iso-8859-8'
else
let encoding = 'cp1255'
endif
endif
if encoding == 'utf-8'
source <sfile>:p:h/hebrewp_utf-8.vim
elseif encoding == 'cp1255'
source <sfile>:p:h/hebrewp_cp1255.vim
else
source <sfile>:p:h/hebrewp_iso-8859-8.vim
endif