From 9640ed1425f2db904fb42cd0c54dc6fbc05ca292 Mon Sep 17 00:00:00 2001 From: Ivan Tham Date: Sat, 12 Jun 2021 23:59:04 +0800 Subject: [PATCH] Add clarification to last buffer --- helix-term/src/commands.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index e7823fe1..2fe84162 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -1392,7 +1392,7 @@ fn switch_to_last_accessed_file(cx: &mut Context) { if let Some(alt) = alternate_file { cx.editor.switch(alt, Action::Replace); } else { - cx.editor.set_error("no last buffer".to_owned()) + cx.editor.set_error("no last accessed buffer".to_owned()) } }