1
0
Fork 0
mirror of https://github.com/vim/vim synced 2025-03-20 08:45:11 +01:00
vim/runtime/keymap/hebrew.vim

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

17 lines
322 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/hebrew_utf-8.vim
elseif encoding == 'cp1255'
source <sfile>:p:h/hebrew_cp1255.vim
else
source <sfile>:p:h/hebrew_iso-8859-8.vim
endif