Skip to content

Commit

Permalink
conemu: fix terminal sequences for <BS>,<Del>
Browse files Browse the repository at this point in the history
  • Loading branch information
janlazo committed Jan 9, 2018
1 parent f540af5 commit 5fe9210
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions vimrc
Expand Up @@ -43,14 +43,8 @@ if has('win32')
set t_Co=256
let &t_AB = "\e[48;5;%dm"
let &t_AF = "\e[38;5;%dm"
endif

inoremap <Char-0x07F> <BS>
nnoremap <Char-0x07F> <BS>
vnoremap <Char-0x07F> <BS>
if exists(':tnoremap') == 2
tnoremap <Char-0x07F> <BS>
let &t_kb = nr2char(127)
let &t_kD = "^[[3~"
endif
endif
endif
Expand Down

0 comments on commit 5fe9210

Please sign in to comment.