>> 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
$ TERM=dumb vim -n -X -E -c 'normal gg=G' -c x
/tmp/mktemp/tmp.qfqXJ1jHwd/file2.sh
3 lines indented
"/private/tmp/mktemp/tmp.qfqXJ1jHwd/file2.sh" 3L, 44C written
> 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
$ vim -n --cmd ':set t_ti= t_te=' -X -E -c 'normal gg=G' -c x
/tmp/mktemp/tmp.OLOOB8goR1/file2.sh
3 lines indented
"/private/tmp/mktemp/tmp.OLOOB8goR1/file2.sh" 3L, 44C written
I still get something printed. How to turn it off? So `< /dev/tty` is
not needed anymore for both cases?
--
Regards,
Peng