1
0
forked from aniani/vim

patch 8.2.4876: MS-Windows: Shift-BS results in strange char in powershell

Problem:    MS-Windows: Shift-BS results in strange character in powershell.
Solution:   Add K_S_BS. (Christian Brabandt, closes #10283, closes #10279)
This commit is contained in:
Christian Brabandt
2022-05-05 20:46:47 +01:00
committed by Bram Moolenaar
parent 40fd7e6652
commit dfbdadce44
6 changed files with 37 additions and 1 deletions

View File

@@ -248,7 +248,11 @@ let g:valgrind_cnt = 1
func GetVimCommand(...)
if !filereadable('vimcmd')
echo 'Cannot read the "vimcmd" file, falling back to ../vim.'
let lines = ['../vim']
if !has("win32")
let lines = ['../vim']
else
let lines = ['..\vim.exe']
endif
else
let lines = readfile('vimcmd')
endif