Fix gundo on newer versions on Python

This commit is contained in:
Thomas Gideon 2017-09-11 11:49:24 -04:00
parent fc811c92d8
commit ddba0ae363

6
vimrc
View file

@ -118,3 +118,9 @@ endif
colorscheme slate
" set this here for terminal sessions, also set in gvimrc for graphical sessions
hi CursorLine guibg=Grey10
" fix for gundo with newer versions of python
if has('python3')
let g:gundo_prefer_python3 = 1 " anything else breaks on Ubuntu 16.04+
endif