diff options
Diffstat (limited to 'vim/vimrc')
-rw-r--r-- | vim/vimrc | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -99,9 +99,11 @@ nnoremap <F5> :checktime<CR> " Python - keybindings nnoremap <leader>Ts :setlocal makeprg=pytest\ -q\ %<cr> -nnoremap <leader>Tt :make!<cr> nnoremap <leader>Tf :setlocal makeprg=flake8\ %<cr> nnoremap <leader>Tb :setlocal makeprg=black\ %<cr> +nnoremap <leader>Tm :setlocal makeprg=mypy\ --ignore-missing-imports\ %<cr> +" then run the one set with this... +nnoremap <leader>Tt :make!<cr> " clear search highlights nnoremap <leader><space> :noh<cr>:call clearmatches()<cr> |