diff --git a/src/control.rs b/src/control.rs index 0087180..e427af3 100644 --- a/src/control.rs +++ b/src/control.rs @@ -21,11 +21,11 @@ pub trait TermControl { self.csi(b"2K") } /// Show the cursor. - fn show(&mut self) -> IoResult { + fn show_cursor(&mut self) -> IoResult { self.csi(b"?25h") } /// Hide the cursor. - fn hide(&mut self) -> IoResult { + fn hide_cursor(&mut self) -> IoResult { self.csi(b"?25l") } /// Reset the rendition mode.