From 9e5718296af5c7336eb00c482f5a1716a833bc41 Mon Sep 17 00:00:00 2001 From: Ole-Morten Duesund Date: Sun, 8 Mar 2026 17:56:51 +0100 Subject: [PATCH] Add bash completion for bun MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Source bun's built-in completion output via `bun completions` (no shell argument needed — it defaults to bash). Co-Authored-By: Claude Opus 4.6 --- 50-bun-completion | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 50-bun-completion diff --git a/50-bun-completion b/50-bun-completion new file mode 100755 index 0000000..d7c7b0f --- /dev/null +++ b/50-bun-completion @@ -0,0 +1,3 @@ +# shellcheck shell=bash +# Enable bash completion for bun (JavaScript runtime & package manager) +command -v bun &>/dev/null && eval "$(bun completions)"