From 0bf18331a55d69446cc8fb2cc7b857d891814ad7 Mon Sep 17 00:00:00 2001 From: Stephan Dilly Date: Tue, 2 Jun 2020 14:43:35 +0200 Subject: [PATCH] better cmd names --- src/strings.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/strings.rs b/src/strings.rs index bd7b4658..b2fa145c 100644 --- a/src/strings.rs +++ b/src/strings.rs @@ -105,19 +105,19 @@ pub mod commands { .hide_help(); /// pub static SELECT_STAGING: CommandText = CommandText::new( - "Focus Stage [s]", + "To stage [s]", "focus/select staging area", CMD_GROUP_GENERAL, ); /// pub static SELECT_STATUS: CommandText = CommandText::new( - "Focus Files [1,2]", + "To files [1,2]", "focus/select file tree of staged or unstaged files", CMD_GROUP_GENERAL, ); /// pub static SELECT_UNSTAGED: CommandText = CommandText::new( - "Focus Unstaged [w]", + "To unstaged [w]", "focus/select unstaged area", CMD_GROUP_GENERAL, );