On Di, 14 Apr 2020, Tim Chase wrote:
> On 2020-04-14 10:01, Christian Brabandt wrote: > > On Mo, 13 Apr 2020, Peng Yu wrote: > > > > > I use the following command to indent file in command line. But > > > it blinks. Is there a way to let it not blink? Thanks. > > > > > > vim -n -X -E -c 'normal gg=G' -c 'x' file.sh < /dev/tty > > > > What blinks? > > I think it refers to painting the vim GUI, possibly switching to the > alternate screen, then clearing the (possibly alternate screen), then > possibly restoring the (non-)alternate screen, creating a "flash" > effect when scripting vim. Since this depends on the terminal, you can either pretend using a dumb terminal: TERM=dumb vim -n -X -E -c 'normal gg=G' -c 'x' file.sh < /dev/tty or alternatively use set the `t_ti` and `t_te` terminal options to empty: vim -n --cmd ':set t_ti= t_te=' -X -E -c 'normal gg=G' -c 'x' file.sh < /dev/tty Best, Christian -- Du wirst in einer Onlinedatenbank alles finden, nur nicht das, was du suchst. -- -- You received this message from the "vim_use" 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_use" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/20200414131801.GL25035%40256bit.org.
