Fix cannot input 4 & 7 by workaround

This commit is contained in:
haya14busa 2014-06-07 02:23:42 +09:00
parent 03573c9921
commit d910e4f1a2

View File

@ -586,9 +586,7 @@ let s:special_keys = [
\ "\<S-Left>",
\ "\<S-Right>",
\ "\<S-Home>",
\ "\<S-End>",
\ "\<S-Insert>",
\ "\<S-Delete>",
\ "\<S-PageUp>",
\ "\<S-PageDown>",
\ "\<S-F1>",
@ -606,10 +604,12 @@ let s:special_keys = [
\ "\<S-Tab>",
\]
" \ "\<S-Delete>", -> conflict with 4
" \ "\<S-End>", -> conflict with 7
function! s:_split_keys(str)
return s:_split_keystring(a:str, s:special_keys)
endfunction
let &cpo = s:save_cpo
unlet s:save_cpo