mv_col {cursr} | R Documentation |
Move the cursor to the specified column, while maintaining the same row.
mv_col(n = 1L)
n |
positive integer specifying the column |
The user must be in a terminal to use the functionality; it will not work in RStudio or the R GUI.
NULL
Other moving functions:
mv_row()
,
mv_to()
,
mv()
# Position cursor at the beginning of the row
mv_col(1)
# Move cursor to the 10th column in the row
mv_col(10)