From ea9139f77ff4424975ae882f30fdbd8ea3231660 Mon Sep 17 00:00:00 2001 From: Xavier Logerais Date: Thu, 2 Oct 2025 22:41:47 +0200 Subject: [PATCH] feat(completion): Add autocompletion for tea `tea` is the command line tool for Gitea. --- completion.d/tea | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 completion.d/tea diff --git a/completion.d/tea b/completion.d/tea new file mode 100644 index 0000000..017cb79 --- /dev/null +++ b/completion.d/tea @@ -0,0 +1,5 @@ +#!/bin/bash + +if (command -v tea &>/dev/null); then + source <(tea completion bash) +fi