xref: /vim-8.2.3635/runtime/keymap/hebrew.vim (revision cb03397a)
1let encoding = &enc
2if encoding == 'latin1'
3    if has("unix")
4	let encoding = 'iso-8859-8'
5    else
6	let encoding = 'cp1255'
7    endif
8endif
9
10if encoding == 'utf-8'
11	source <sfile>:p:h/hebrew_utf-8.vim
12elseif encoding == 'cp1255'
13	source <sfile>:p:h/hebrew_cp1255.vim
14else
15	source <sfile>:p:h/hebrew_iso-8859-8.vim
16endif
17