view runtime/keymap/polish-slash_iso-8859-2.vim @ 34596:5a8340e044f4 v9.1.0190

patch 9.1.0190: complete_info() returns wrong order of items Commit: https://github.com/vim/vim/commit/8950bf7f8b85c1287d4e696965d88091fcc60594 Author: Girish Palya <girishji@gmail.com> Date: Wed Mar 20 20:07:29 2024 +0100 patch 9.1.0190: complete_info() returns wrong order of items Problem: complete_info() returns wrong order of items (after v9.0.2018) Solution: Revert Patch v9.0.2018 (Girish Palya) bug fix: complete_info() gives wrong results 1) complete_info() reverses list of items during <c-p> 2) 'selected' item index is wrong during <c-p> 3) number of items returnd can be wrong Solution: - Decouple 'cp_number' from 'selected' index since they need not be correlated - Do not iterate the list backwards - Add targeted tests Regression introduced by https://github.com/vim/vim/commit/69fb5afb3bc9da24c2fb0eafb0027ba9c6502fc2 Following are unnecessary commits to patch problems from above: https://github.com/vim/vim/commit/fef66301665027f1801a18d796f74584666f41ef https://github.com/vim/vim/commit/daef8c74375141974d61b85199b383017644978c All the tests from above commits are retained though. fixes: #14204 closes: #14241 Signed-off-by: Girish Palya <girishji@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Wed, 20 Mar 2024 20:15:03 +0100
parents 8cd729851562
children
line wrap: on
line source

" Polish letters keymap for iso-8859-2
" Maintainer:	HS6_06	<hs6_06@o2.pl>
" Last Changed:	2005 Jan 12
" Current version: 1.0.2
" History: polish-slash.vim

" This keymap adds the special Polish letters
" to an existing Latin keyboard.
" All chars as usual except:
" Polish:
"   instead of AltGr+{acelnosxz} you ve to use "/" followed by {acelnosxz}

" short keymap name for statusline
let b:keymap_name = "PL-slash-ISO"

scriptencoding latin1

loadkeymap

" Polish letters
/a	<Char-177>	" LATIN SMALL LETTER A WITH OGONEK
/c	<Char-230>	" LATIN SMALL LETTER C WITH ACUTE
/e	<Char-234>	" LATIN SMALL LETTER E WITH OGONEK
/l	<Char-179>	" LATIN SMALL LETTER L WITH STROKE
/n	<Char-241>	" LATIN SMALL LETTER N WITH ACUTE
/o	<Char-243>	" LATIN SMALL LETTER O WITH ACUTE
/s	<Char-182>	" LATIN SMALL LETTER S WITH ACUTE
/x	<Char-188>	" LATIN SMALL LETTER Z WITH ACUTE
/z	<Char-191>	" LATIN SMALL LETTER Z WITH DOT ABOVE

/A	<Char-161>	" LATIN CAPITAL LETTER A WITH OGONEK
/C	<Char-198>	" LATIN CAPITAL LETTER C WITH ACUTE
/E	<Char-202>	" LATIN CAPITAL LETTER E WITH OGONEK
/L	<Char-163>	" LATIN CAPITAL LETTER L WITH STROKE
/N	<Char-209>	" LATIN CAPITAL LETTER N WITH ACUTE
/O	<Char-211>	" LATIN CAPITAL LETTER O WITH ACUTE
/S	<Char-166>	" LATIN CAPITAL LETTER S WITH ACUTE
/X	<Char-172>	" LATIN CAPITAL LETTER Z WITH ACUTE
/Z	<Char-175>	" LATIN CAPITAL LETTER Z WITH DOT ABOVE