view runtime/keymap/hebrew.vim @ 32319:23d44be6ec20 v9.0.1491

patch 9.0.1491: wrong scrolling with ls=0 and :botright split Commit: https://github.com/vim/vim/commit/fbf2071ac9ef08302a1df86c15f3d4ddbe871243 Author: zeertzjq <zeertzjq@outlook.com> Date: Wed Apr 26 19:01:44 2023 +0100 patch 9.0.1491: wrong scrolling with ls=0 and :botright split Problem: Wrong scrolling with ls=0 and :botright split. Solution: Add statusline before calling frame_new_height(). (closes https://github.com/vim/vim/issues/12299)
author Bram Moolenaar <Bram@vim.org>
date Wed, 26 Apr 2023 20:15:04 +0200
parents 3fc0f57ecb91
children
line wrap: on
line source

let encoding = &enc
if encoding == 'latin1'
    if has("unix")
	let encoding = 'iso-8859-8'
    else
	let encoding = 'cp1255'
    endif
endif

if encoding == 'utf-8'
	source <sfile>:p:h/hebrew_utf-8.vim
elseif encoding == 'cp1255'
	source <sfile>:p:h/hebrew_cp1255.vim
else
	source <sfile>:p:h/hebrew_iso-8859-8.vim
endif