view runtime/keymap/hebrew.vim @ 31223:30377fd8341e v9.0.0945

patch 9.0.0945: failures in the cursorline test Commit: https://github.com/vim/vim/commit/637862fc3ca68e3fc1ea9a178bd7f9d25a6e773b Author: Bram Moolenaar <Bram@vim.org> Date: Thu Nov 24 23:04:02 2022 +0000 patch 9.0.0945: failures in the cursorline test Problem: Failures in the cursorline test. Solution: Reset extra_attr only after a text property.
author Bram Moolenaar <Bram@vim.org>
date Fri, 25 Nov 2022 00:15:02 +0100
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