diff options
author | Michael Muré <batolettre@gmail.com> | 2019-08-31 13:25:44 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2019-08-31 13:25:44 +0200 |
commit | c7792a5d1279a92c8d0caf67a0cf688cc9e32e09 (patch) | |
tree | 31e04585bf2e68ba5311722cb52df9ffd1e0a2ab /commands/termui.go | |
parent | 2b14bb253c0bbc7e5010de62f2dc527186d88f0a (diff) | |
download | git-bug-c7792a5d1279a92c8d0caf67a0cf688cc9e32e09.tar.gz |
commands: add a "tui" alias for "termui"
Diffstat (limited to 'commands/termui.go')
-rw-r--r-- | commands/termui.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/commands/termui.go b/commands/termui.go index 19a1397a..2cdc3507 100644 --- a/commands/termui.go +++ b/commands/termui.go @@ -20,6 +20,7 @@ func runTermUI(cmd *cobra.Command, args []string) error { var termUICmd = &cobra.Command{ Use: "termui", + Aliases: []string{"tui"}, Short: "Launch the terminal UI.", PreRunE: loadRepoEnsureUser, RunE: runTermUI, |