---
title: Shell tab completions for Wrangler CLI
description: Wrangler now supports shell tab completions for Bash, Zsh, Fish, and PowerShell, making it faster to navigate commands and flags.
image: https://developers.cloudflare.com/changelog-preview.png
---

> Documentation Index  
> Fetch the complete documentation index at: https://developers.cloudflare.com/changelog/llms.txt  
> Use this file to discover all available pages before exploring further. 

[Skip to content](#%5Ftop) 

# Changelog

New updates and improvements at Cloudflare.

[ Subscribe to RSS ](https://developers.cloudflare.com/changelog/rss/index.xml) [ View RSS feeds ](https://developers.cloudflare.com/fundamentals/new-features/available-rss-feeds/) 

![hero image](https://developers.cloudflare.com/_astro/hero.CVYJHPAd_26AMqX.svg) 

[ ← Back to all posts ](https://developers.cloudflare.com/changelog/) 

## Shell tab completions for Wrangler CLI

Jan 09, 2026 

[ Workers ](https://developers.cloudflare.com/workers/) 

Wrangler now includes built-in shell tab completion support, making it faster and easier to navigate commands without memorizing every option. Press Tab as you type to autocomplete commands, subcommands, flags, and even option values like log levels.

Tab completions are supported for Bash, Zsh, Fish, and PowerShell.

#### Setup

Generate the completion script for your shell and add it to your configuration file:

```sh
# Bash
wrangler complete bash >> ~/.bashrc


# Zsh
wrangler complete zsh >> ~/.zshrc


# Fish
wrangler complete fish >> ~/.config/fish/config.fish


# PowerShell
wrangler complete powershell >> $PROFILE
```

After adding the script, restart your terminal or source your configuration file for the changes to take effect. Then you can simply press Tab to see available completions:

```sh
wrangler d<TAB>          # completes to 'deploy', 'dev', 'd1', etc.
wrangler kv <TAB>        # shows subcommands: namespace, key, bulk
```

Tab completions are dynamically generated from Wrangler's command registry, so they stay up-to-date as new commands and options are added. This feature is powered by [@bomb.sh/tab ↗](https://github.com/bombshell-dev/tab/).

See the [wrangler complete documentation](https://developers.cloudflare.com/workers/wrangler/commands/general/#complete) for more details.

```json
{"@context":"https://schema.org","@type":"BlogPosting","@id":"https://developers.cloudflare.com/changelog/post/2026-01-09-wrangler-tab-completion/#page","headline":"Shell tab completions for Wrangler CLI · Changelog","description":"Wrangler now supports shell tab completions for Bash, Zsh, Fish, and PowerShell, making it faster to navigate commands and flags.","url":"https://developers.cloudflare.com/changelog/post/2026-01-09-wrangler-tab-completion/","inLanguage":"en","image":"https://developers.cloudflare.com/changelog-preview.png","dateModified":"2026-01-09","datePublished":"2026-01-09","publisher":{"@type":"Organization","name":"Cloudflare","url":"https://www.cloudflare.com/"},"isPartOf":{"@type":"WebSite","@id":"https://developers.cloudflare.com/#website","name":"Cloudflare Docs","url":"https://developers.cloudflare.com/"}}
```
