From 275601665f43ba809607c9a90439a710179a4968 Mon Sep 17 00:00:00 2001 From: Aaron Gyes Date: Sat, 22 Jan 2022 21:21:21 -0800 Subject: [PATCH] Shorten more commands We're at 2 columns @ 115-wide terminal. --- src/builtin.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/builtin.cpp b/src/builtin.cpp index 291cc7bdb..070df517c 100644 --- a/src/builtin.cpp +++ b/src/builtin.cpp @@ -369,7 +369,7 @@ static constexpr builtin_data_t builtin_datas[] = { {L"builtin", &builtin_builtin, N_(L"Run a builtin command instead of a function")}, {L"case", &builtin_generic, N_(L"Conditionally execute a block of commands")}, {L"cd", &builtin_cd, N_(L"Change working directory")}, - {L"command", &builtin_command, N_(L"Run a program instead of a function or builtin")}, + {L"command", &builtin_command, N_(L"Run program instead of a function or builtin")}, {L"commandline", &builtin_commandline, N_(L"Set or get the commandline")}, {L"complete", &builtin_complete, N_(L"Edit command specific completions")}, {L"contains", &builtin_contains, N_(L"Search for a specified string in a list")}, @@ -398,7 +398,7 @@ static constexpr builtin_data_t builtin_datas[] = { {L"pwd", &builtin_pwd, N_(L"Print the working directory")}, {L"random", &builtin_random, N_(L"Generate random number")}, {L"read", &builtin_read, N_(L"Read a line of input into variables")}, - {L"realpath", &builtin_realpath, N_(L"Convert path to absolute path without symlinks")}, + {L"realpath", &builtin_realpath, N_(L"Show absolute path sans symlinks")}, {L"return", &builtin_return, N_(L"Stop the currently evaluated function")}, {L"set", &builtin_set, N_(L"Handle environment variables")}, {L"set_color", &builtin_set_color, N_(L"Set the terminal color")}, @@ -410,7 +410,7 @@ static constexpr builtin_data_t builtin_datas[] = { {L"time", &builtin_generic, N_(L"Measure how long a command or block takes")}, {L"true", &builtin_true, N_(L"Return a successful result")}, {L"type", &builtin_type, N_(L"Check if a thing is a thing")}, - {L"ulimit", &builtin_ulimit, N_(L"Set or get the shells resource usage limits")}, + {L"ulimit", &builtin_ulimit, N_(L"Get/set resource usage limits")}, {L"wait", &builtin_wait, N_(L"Wait for background processes completed")}, {L"while", &builtin_generic, N_(L"Perform a command multiple times")}, };