/** Moves the cursor to the left the given number of columns. */\r
#define ESC_CURSOR_BACKWARD(C) ANSI_ESCAPE_SEQUENCE(#C "D")\r
\r
- /** Saves the current cursor position so that it may be restored with ESC_CURSOR_POS_RESTORE. */\r
+ /** Saves the current cursor position so that it may be restored with \ref ESC_CURSOR_POS_RESTORE. */\r
#define ESC_CURSOR_POS_SAVE ANSI_ESCAPE_SEQUENCE("s")\r
\r
- /** Restores the cursor position to the last position saved with ESC_CURSOR_POS_SAVE. */\r
+ /** Restores the cursor position to the last position saved with \ref ESC_CURSOR_POS_SAVE. */\r
#define ESC_CURSOR_POS_RESTORE ANSI_ESCAPE_SEQUENCE("u")\r
\r
/** Erases the entire display, returning the cursor to the top left. */\r