On Thu, Apr 18, 2019 at 11:42 AM <[email protected]> wrote: > On Thursday, April 18, 2019 at 5:21:50 PM UTC+2, Manuel Ortega wrote: > > Yes: all you need to do is use an autocommand event like say TabEnter > or TabLeave to do e.g. ':silent redraw` whenever a tab is entered/left. > > That works, thank you! (Altough it does make loading several files with > 'vim -p' a bit slower and the redrawing is noticeable. Perhaps it would > make sense to add a "redrawcommandline" command?) >
The :redraw was just an example to get you started. `:echo ""` or even `:echo` should work as well, and wouldn't require repainting the whole screen. I'm sure there are lots of other ways to do it; no need to add a new vim command. -Manny -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
