view runtime/keymap/hebrewp.vim @ 13066:617112037564 v8.0.1408

patch 8.0.1408: crash in setqflist() commit https://github.com/vim/vim/commit/a0ca7d002d4efcf4bce0af6943146a339677ed3d Author: Bram Moolenaar <Bram@vim.org> Date: Tue Dec 19 10:22:19 2017 +0100 patch 8.0.1408: crash in setqflist() Problem: Crash in setqflist(). Solution: Check for string to be NULL. (Dominique Pelle, closes https://github.com/vim/vim/issues/2464)
author Christian Brabandt <cb@256bit.org>
date Tue, 19 Dec 2017 10:30:05 +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/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