aboutsummaryrefslogtreecommitdiff
path: root/helix-term
diff options
context:
space:
mode:
authorIvan Tham2021-06-12 15:59:04 +0000
committerBlaž Hrastnik2021-06-13 00:58:50 +0000
commit9640ed1425f2db904fb42cd0c54dc6fbc05ca292 (patch)
tree0f66054e433ea7fb9f37c4ac50f9936394b1e92d /helix-term
parent9baf1ecc90117710e785467f59a99ee119f50c73 (diff)
Add clarification to last buffer
Diffstat (limited to 'helix-term')
-rw-r--r--helix-term/src/commands.rs2
1 files changed, 1 insertions, 1 deletions
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())
}
}