From 7f025ab3cd553633c5746f6b05524d1bfdcfc444 Mon Sep 17 00:00:00 2001 From: Kyohei Uto Date: Sat, 3 Feb 2024 05:52:57 +0900 Subject: [PATCH] Add comment --- src/run.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/run.rs b/src/run.rs index ef2f959..9a1ce8d 100644 --- a/src/run.rs +++ b/src/run.rs @@ -153,7 +153,7 @@ pub fn run(arg: PathBuf, log: bool) -> Result<(), FxError> { /// Run the app. (Containing the main loop) fn _run(mut state: State, session_path: PathBuf) -> Result<(), FxError> { - //Enter the alternate screen with crossterm + //Save the current cursor position and enter the alternate screen with crossterm let mut screen = stdout(); write!(screen, "{}", SavePosition)?; enter_raw_mode();