diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-01-11 21:30:59 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-01-11 21:30:59 +0000 |
commit | 2a41f3a19f8212fd85c49d886ea7c67b0523a3a3 (patch) | |
tree | 144fb1bd26831e3ea76c63980be266ac0057ee25 /runtime/keymap/polish-slash.vim | |
parent | 5f2bb9f5840d30028232d6187ead60a32b9ca592 (diff) | |
download | vim-2a41f3a19f8212fd85c49d886ea7c67b0523a3a3.zip |
updated for version 7.0037
Diffstat (limited to 'runtime/keymap/polish-slash.vim')
-rw-r--r-- | runtime/keymap/polish-slash.vim | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/runtime/keymap/polish-slash.vim b/runtime/keymap/polish-slash.vim new file mode 100644 index 000000000..1a2f18c66 --- /dev/null +++ b/runtime/keymap/polish-slash.vim @@ -0,0 +1,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 |