I have the following key mappings in my ~/.vimrc
" Format paragaph
au FileType markdown nnoremap <buffer> <space> gwip
" Send current line to tmux usind SendToTmux
au FileType python,sh,zsh nnoremap <buffer> <space> yy:call SendToTmux(@")<cr>j
I would like vim to apply / use the markdown key mapping, whenever I am in a line or a paragraph of comments.