mirror of
https://github.com/gitui-org/gitui
synced 2026-05-24 09:28:21 +00:00
better cmd names
This commit is contained in:
parent
26a4245213
commit
0bf18331a5
1 changed files with 3 additions and 3 deletions
|
|
@ -105,19 +105,19 @@ pub mod commands {
|
||||||
.hide_help();
|
.hide_help();
|
||||||
///
|
///
|
||||||
pub static SELECT_STAGING: CommandText = CommandText::new(
|
pub static SELECT_STAGING: CommandText = CommandText::new(
|
||||||
"Focus Stage [s]",
|
"To stage [s]",
|
||||||
"focus/select staging area",
|
"focus/select staging area",
|
||||||
CMD_GROUP_GENERAL,
|
CMD_GROUP_GENERAL,
|
||||||
);
|
);
|
||||||
///
|
///
|
||||||
pub static SELECT_STATUS: CommandText = CommandText::new(
|
pub static SELECT_STATUS: CommandText = CommandText::new(
|
||||||
"Focus Files [1,2]",
|
"To files [1,2]",
|
||||||
"focus/select file tree of staged or unstaged files",
|
"focus/select file tree of staged or unstaged files",
|
||||||
CMD_GROUP_GENERAL,
|
CMD_GROUP_GENERAL,
|
||||||
);
|
);
|
||||||
///
|
///
|
||||||
pub static SELECT_UNSTAGED: CommandText = CommandText::new(
|
pub static SELECT_UNSTAGED: CommandText = CommandText::new(
|
||||||
"Focus Unstaged [w]",
|
"To unstaged [w]",
|
||||||
"focus/select unstaged area",
|
"focus/select unstaged area",
|
||||||
CMD_GROUP_GENERAL,
|
CMD_GROUP_GENERAL,
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue