view runtime/keymap/hebrewp.vim @ 25571:951f3e04e238 v8.2.3322

patch 8.2.3322: Vim9: checking type of dict does not check member type Commit: https://github.com/vim/vim/commit/b56c4419d42e024e79b1772c8468c0da7c11275f Author: Bram Moolenaar <Bram@vim.org> Date: Mon Aug 9 22:22:27 2021 +0200 patch 8.2.3322: Vim9: checking type of dict does not check member type Problem: Vim9: checking type of dict does not check member type. Solution: When getting the type of a typval use dv_type and lv_type. (closes #8732)
author Bram Moolenaar <Bram@vim.org>
date Mon, 09 Aug 2021 22:30: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/hebrewp_utf-8.vim
elseif encoding == 'cp1255'
	source <sfile>:p:h/hebrewp_cp1255.vim
else
	source <sfile>:p:h/hebrewp_iso-8859-8.vim
endif