comparison vim/vimrc @ 408:1da269c50dca

Fix python 2/3 loading order problem in Vim.
author Ludovic Chabant <ludovic@chabant.com>
date Wed, 10 Jan 2018 00:02:16 -0800
parents c175fda4aa2e
children 63463782d1cd
comparison
equal deleted inserted replaced
407:c6da0c9f40ae 408:1da269c50dca
271 \'tag', 'buffertag', 'quickfix', 'mixed', 'bookmarkdir', 271 \'tag', 'buffertag', 'quickfix', 'mixed', 'bookmarkdir',
272 \'autoignore' 272 \'autoignore'
273 \] 273 \]
274 274
275 " Use PyMatch to go faster. 275 " Use PyMatch to go faster.
276 if has('python') || has('python3') 276 if has('python3') || has('python')
277 let g:ctrlp_match_func = {'match': 'pymatcher#PyMatch'} 277 let g:ctrlp_match_func = {'match': 'pymatcher#PyMatch'}
278 let g:ctrlp_max_files = 0 278 let g:ctrlp_max_files = 0
279 let g:ctrlp_lazy_update = 350 279 let g:ctrlp_lazy_update = 350
280 endif 280 endif
281 281