ansi_hide_cursor {cli} | R Documentation |
Hide/show cursor in a terminal
Description
This only works in terminal emulators. In other environments, it does nothing.
Usage
ansi_hide_cursor(stream = "auto")
ansi_show_cursor(stream = "auto")
ansi_with_hidden_cursor(expr, stream = "auto")
Arguments
stream |
The stream to inspect or manipulate, an R connection
object. It can also be a string, one of |
expr |
R expression to evaluate. |
Details
ansi_hide_cursor()
hides the cursor.
ansi_show_cursor()
shows the cursor.
ansi_with_hidden_cursor()
temporarily hides the cursor for
evaluating an expression.
See Also
Other terminal capabilities:
is_ansi_tty()
,
is_dynamic_tty()
Other low level ANSI functions:
ansi_has_any()
,
ansi_regex()
,
ansi_string()
,
ansi_strip()
[Package cli version 3.6.3 Index]