Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.

Commit

Permalink
Add hack to allow <c-h> to work in neovim
Browse files Browse the repository at this point in the history
  • Loading branch information
simonrw committed Aug 20, 2015
1 parent 64bcbce commit f4495a8
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion vim/vim/vimrc
Expand Up @@ -460,7 +460,16 @@ endfunction
" Neovim "
""""""""""""""""""""

let g:python_host_prog = '/usr/local/bin/python'
" Neovim only...
if has('nvim')

let g:python_host_prog = '/usr/local/bin/python'

" Hack to allow <c-h> to work properly
nmap <BS> <C-W>h
endif

" }}}
" {{{ Theming
set background=dark
Expand Down

0 comments on commit f4495a8

Please sign in to comment.