annotate runtime/keymap/hebrew.vim @ 9440:73c0d07cc15e
v7.4.2001
commit https://github.com/vim/vim/commit/ba768495c2e6bae74e49d22d489fbf211ecad55e
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Jul 8 15:32:54 2016 +0200
patch 7.4.2001
Problem: Tiny build fails. (Tony Mechelynck)
Solution: Add #ifdef.
author |
Christian Brabandt <cb@256bit.org> |
date |
Fri, 08 Jul 2016 15:45:05 +0200 |
parents |
3fc0f57ecb91 |
children |
|
rev |
line source |
7
|
1 let encoding = &enc
|
|
2 if encoding == 'latin1'
|
|
3 if has("unix")
|
|
4 let encoding = 'iso-8859-8'
|
|
5 else
|
|
6 let encoding = 'cp1255'
|
|
7 endif
|
|
8 endif
|
|
9
|
|
10 if encoding == 'utf-8'
|
|
11 source <sfile>:p:h/hebrew_utf-8.vim
|
|
12 elseif encoding == 'cp1255'
|
|
13 source <sfile>:p:h/hebrew_cp1255.vim
|
|
14 else
|
|
15 source <sfile>:p:h/hebrew_iso-8859-8.vim
|
|
16 endif
|