Hello, when i run a mapped key which has very long map string than my screen width, the cmdline always blinks, even adding "silent" parameter after nnoremap, it also doesn't work, and I really don't like it.
I wonder if there is any way to stop this blinking for such case?
It's really appreciated to look forward to your answer, thanks.
the below key map is for your reference, its map string is longer than my screen width.
nnoremap <silent> gT :<c-u>
\| if v:count == 0
\| exec 'normal gT'
\| elseif v:count > tabpagenr('$')
\| tabmove
\| elseif v:count >= tabpagenr()
\| exec 'tabmove' v:count
\| elseif v:count < tabpagenr()
\| exec 'tabmove' v:count - 1
\| endif
\| <cr>