comparison vim/vimrc @ 307:b09d451f3516

Okay let's try PythonMode again.
author Ludovic Chabant <ludovic@chabant.com>
date Wed, 29 Jul 2015 01:18:09 -0700
parents 7a47a1cc8687
children 52d4d0fa195b de5090faf408
comparison
equal deleted inserted replaced
306:7a47a1cc8687 307:b09d451f3516
302 " }}} 302 " }}}
303 303
304 " Python-Mode {{{ 304 " Python-Mode {{{
305 305
306 let g:pymode = 1 306 let g:pymode = 1
307 let g:pymode_python = 'disable' 307 let g:pymode_python = 'python'
308 let g:pymode_syntax_all = 1 308
309 let g:pymode_syntax = 1
310 let g:pymode_syntax_all = 0
311 let g:pymode_syntax_builtin_objs = 1
309 let g:pymode_syntax_print_as_function = 1 312 let g:pymode_syntax_print_as_function = 1
310 let g:pymode_syntax_space_errors = 1 313 let g:pymode_syntax_space_errors = 1
314
311 let g:pymode_run = 0 315 let g:pymode_run = 0
316
312 let g:pymode_lint = 0 317 let g:pymode_lint = 0
313 let g:pymode_trim_whitespaces = 0 318 let g:pymode_trim_whitespaces = 0
319 let g:pymode_folding = 1
320
321 let g:pymode_doc = 1
322 let g:pymode_doc_bind = 'K'
323
314 let g:pymode_virtualenv = 0 324 let g:pymode_virtualenv = 0
315 let g:pymode_folding = 1
316
317 if !has('+python')
318 let g:pymode = 0
319 endif
320 325
321 " }}} 326 " }}}
322 327
323 " }}} 328 " }}}
324 329