import { restorescreen } from "https://deno.land/x/denops_std@v6.4.0/option/vim/mod.ts";
When set, the screen contents is restored when exiting Vim. This also happens when executing external commands.
For non-Windows Vim: You can set or reset the 't_ti' and 't_te'
options in your .vimrc. To disable restoring:
set t_ti= t_te=
To enable restoring (for an xterm):
set t_ti=^[7^[[r^[[?47h t_te=^[[?47l^[8
(Where ^[ is an <Esc>
, type CTRL-V <Esc>
to insert it)
(default on)
only in MS-Windows console version
type
GlobalOption<boolean>