diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-02-14 18:47:46 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-02-14 18:47:46 +0100 |
commit | 12053624d3b49383f44ee67d5962f389fb4b5bf3 (patch) | |
tree | 7c8380c971d015b1baeb8bfbe7df6e249102e25e /dotvimrc | |
parent | a0c9504082420d7305092e15795075e8f396a8e1 (diff) | |
download | vimrc-12053624d3b49383f44ee67d5962f389fb4b5bf3.tar.gz vimrc-12053624d3b49383f44ee67d5962f389fb4b5bf3.tar.bz2 vimrc-12053624d3b49383f44ee67d5962f389fb4b5bf3.zip |
try to convince syntastic to only check when I ask
Diffstat (limited to 'dotvimrc')
-rw-r--r-- | dotvimrc | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -100,6 +100,8 @@ let g:syntastic_c_config_file = '.clang_complete' let g:syntastic_cpp_compiler = 'clang++' let g:syntastic_cpp_compiler_options = ' ' let g:syntastic_cpp_config_file = '.clang_complete' +let g:syntastic_check_on_open = 0 +let g:syntastic_check_on_wq = 0 let g:Powerline_symbols = 'unicode' NeoBundle 'Tag-Signature-Balloons' @@ -269,7 +271,7 @@ noremap <Leader>gt :call TimeLapse()<cr> noremap <Leader>e :NERDTreeToggle<CR> -noremap <Leader>s :SyntasticToggle<CR> +noremap <Leader>s :SyntasticCheck<CR> noremap <Leader>T :set expandtab!<CR> |