diff options
author | Ivan Tham | 2021-06-12 15:59:04 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-06-13 00:58:50 +0000 |
commit | 9640ed1425f2db904fb42cd0c54dc6fbc05ca292 (patch) | |
tree | 0f66054e433ea7fb9f37c4ac50f9936394b1e92d | |
parent | 9baf1ecc90117710e785467f59a99ee119f50c73 (diff) |
Add clarification to last buffer
-rw-r--r-- | helix-term/src/commands.rs | 2 |
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()) } } |