diff options
author | Juan J. Martinez <jjm@usebox.net> | 2020-01-16 10:17:17 +0000 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2022-05-29 22:57:29 +0100 |
commit | 39c4dc1afaa330e0b84aadd4af2960f2dc01feb0 (patch) | |
tree | 5e5db2449b5c3378af826e437b40d693c5208a8d | |
parent | 1cf17e8d08be76878cf69b5cd02330246b29fc40 (diff) | |
download | dotnvim-39c4dc1afaa330e0b84aadd4af2960f2dc01feb0.tar.gz dotnvim-39c4dc1afaa330e0b84aadd4af2960f2dc01feb0.zip |
Alt way of defining combinations
Seems like C-Fx is not working because the desktop or tmux behaviour.
-rw-r--r-- | vimrc | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -57,11 +57,11 @@ let g:syntastic_mode_map = { \ 'mode': 'passive', \ 'active_filetypes': [ 'python', 'go' ] } -" make easy to perform a check -noremap <C-F6> :SyntasticCheck<CR> +" make easy to perform a check (C-F6) +noremap <F30> :SyntasticCheck<CR> -"" vim-autoformat -noremap <C-F5> :Autoformat<CR> +"" vim-autoformat (C-F5) +noremap <F29> :Autoformat<CR> " enable omnicompletion set omnifunc=syntaxcomplete#Complete |