# HG changeset patch # User Ludovic Chabant # Date 1392694283 28800 # Node ID 925df140ae953145df1c7df5c3f71823485339ae # Parent 254c4f068808d38b6e420e09b9169ddfa2a3b8fe Commands to toggle Lawrencium logging. diff -r 254c4f068808 -r 925df140ae95 vim/vimrc --- a/vim/vimrc Fri Jan 03 19:38:57 2014 -0800 +++ b/vim/vimrc Mon Feb 17 19:31:23 2014 -0800 @@ -221,14 +221,14 @@ " Ctrl-P should however ignore some stuff. let g:ctrlp_custom_ignore = { - \ 'dir': '\v[\/](\.git|\.hg|\.svn|venv|build|node_modules)$' + \ 'dir': '\v[\/](\.git|\.hg|\.svn|venv|build|static|node_modules)$' \ } " Make Ctrl-P cache stuff in our temp directory. let g:ctrlp_cache_dir = s:vim_home.'/cache' " Use `pyflakes` with `syntastic`. -let g:syntastic_python_checkers = ['pyflakes', 'pylint'] +let g:syntastic_python_checkers = ['pyflakes'] " Custom Mercurial commands highlighting in Lawrencium. let g:lawrencium_hg_commands_file_types = { @@ -433,6 +433,9 @@ let g:lawrencium_debug = 1 let g:lawrencium_trace = 0 +command! LawrenciumEnableTrace :call lawrencium#debugtrace(1) +command! LawrenciumDisableTrace :call lawrencium#debugtrace(0) + " Enable debugging PieCrust let g:piecrust_debug = 1 let g:piecrust_trace = 0