view runtime/lang/menu_ru_ru.vim @ 33428:b21a1fc34254 v9.0.1972

patch 9.0.1972: win32: missing '**' expansion test Commit: https://github.com/vim/vim/commit/4a1ad5556423dca5f5b7ee39f143579e67569ae1 Author: Ken Takata <kentkt@csc.jp> Date: Mon Oct 2 21:31:31 2023 +0200 patch 9.0.1972: win32: missing '**' expansion test Problem: win32: missing '**' expansion test (after v9.0.1947) Solution: Add test for MS-Windows win32: Add "**" test Vim supports "**" on MS-Windows. However, it is not tested by `Test_glob_extended_bash`. Unlike Unix, it doesn't use 'shell' and doesn't support {,} expansion. So, I added as a separate test. related: #13205 closes: #13250 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: Ken Takata <kentkt@csc.jp>
author Christian Brabandt <cb@256bit.org>
date Mon, 02 Oct 2023 21:45:05 +0200
parents 172f80704b05
children
line wrap: on
line source

" Menu Translations:	Russian

if ('utf-8' ==? &enc) && filereadable(expand('<sfile>:p:h') . '/menu_ru_ru.utf-8.vim')
    source <sfile>:p:h/menu_ru_ru.utf-8.vim
elseif ('cp1251' ==? &enc) && filereadable(expand('<sfile>:p:h') . '/menu_ru_ru.cp1251.vim')
    source <sfile>:p:h/menu_ru_ru.cp1251.vim
" elseif ('cp866' ==? &enc) && filereadable(expand('<sfile>:p:h') . '/menu_ru_ru.cp866.vim')
"    source <sfile>:p:h/menu_ru_ru.cp866.vim
elseif ('koi8-r' ==? &enc) && filereadable(expand('<sfile>:p:h') . '/menu_ru_ru.koi8-r.vim')
    source <sfile>:p:h/menu_ru_ru.koi8-r.vim
else
    echomsg 'Could not find the menu file matching the current encoding'
endif