annotate runtime/keymap/slovak.vim @ 24982:4cb423b9250d
v8.2.3028
patch 8.2.3028: GUI mouse events not tested
Commit: https://github.com/vim/vim/commit/f1e7449d567c630601aa0cec6c663b791785a668
Author: Yegappan Lakshmanan <yegappan@yahoo.com>
Date: Mon Jun 21 18:44:26 2021 +0200
patch 8.2.3028: GUI mouse events not tested
Problem: GUI mouse events not tested.
Solution: Add test_gui_mouse_event(). Add mouse tests. Also add a few
viminfo tests. (Yegappan Lakshmanan, closes #8407)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Mon, 21 Jun 2021 18:45:04 +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-2'
|
|
5 else
|
|
6 let encoding = 'cp1250'
|
|
7 endif
|
|
8 endif
|
|
9
|
|
10 if encoding == 'utf-8'
|
|
11 source <sfile>:p:h/slovak_utf-8.vim
|
|
12 elseif encoding == 'cp1250'
|
|
13 source <sfile>:p:h/slovak_cp1250.vim
|
|
14 else
|
|
15 source <sfile>:p:h/slovak_iso-8859-2.vim
|
|
16 endif
|