Workers - Shell tab completions for Wrangler CLI
5mo ago
Source
CloudflareWorkers - Shell tab completions for Wrangler CLIcloudflare.comWrangler 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: # 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: wrangler d # completes to 'deploy', 'dev', 'd1', etc. wrangler kv # 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 . See the wrangler complete documentation for more details.
You might also wanna read
Creating Cross-Shell Tab-Completions for Bash and Zsh
The article discusses the challenges of implementing shell tab-completions for both Bash and Zsh, highlighting the differences in their APIs
Essential Shell Scripts for Daily Developer Productivity
A developer shares their collection of frequently used shell scripts from over a decade of maintaining dotfiles. The article highlights prac
evanhahn.com·8mo ago
Practical Shell Command-Line Tricks for Improved Developer Productivity
This article provides practical shell command-line tricks to improve efficiency and productivity for developers and engineers. It addresses
blog.hofstede.it·3mo ago

Comments
Sign in to join the conversation.
No comments yet. Be the first.