All Projects → dsifford → Yarn Completion

dsifford / Yarn Completion

Licence: mit
Bash completion for Yarn

Programming Languages

shell
77523 projects
bash
514 projects

Projects that are alternatives of or similar to Yarn Completion

Fz
Cli shell plugin, the missing fuzzy tab completion feature of z jump around command.
Stars: ✭ 359 (+70.95%)
Mutual labels:  bash-completion, completion, autocompletion
zsh-yarn-completions
Yarn completions for Z-shell that supports yarn workspaces
Stars: ✭ 35 (-83.33%)
Mutual labels:  yarn, autocompletion
Dargs
Enhance any command with dynamic arguments
Stars: ✭ 107 (-49.05%)
Mutual labels:  bash-completion, autocompletion
Picocli
Picocli is a modern framework for building powerful, user-friendly, GraalVM-enabled command line apps with ease. It supports colors, autocompletion, subcommands, and more. In 1 source file so apps can include as source & avoid adding a dependency. Written in Java, usable from Groovy, Kotlin, Scala, etc.
Stars: ✭ 3,286 (+1464.76%)
Mutual labels:  bash-completion, completion
Zsh Autocomplete
🤖 Real-time type-ahead completion for Zsh. Asynchronous find-as-you-type autocompletion.
Stars: ✭ 641 (+205.24%)
Mutual labels:  completion, autocompletion
Symfony Console Autocomplete
Shell autocompletion for Symfony Console based scripts
Stars: ✭ 465 (+121.43%)
Mutual labels:  completion, autocompletion
Kubectl Fzf
A fast kubectl autocompletion with fzf
Stars: ✭ 315 (+50%)
Mutual labels:  completion, autocompletion
Complete
bash completion written in go + bash completion for go command
Stars: ✭ 761 (+262.38%)
Mutual labels:  bash-completion, completion
Bash Argsparse
An high level argument parsing library for bash
Stars: ✭ 128 (-39.05%)
Mutual labels:  bash-completion, completion
Greenkeeper Lockfile
🔒 Your lockfile, up to date, all the time
Stars: ✭ 181 (-13.81%)
Mutual labels:  yarn
My Wallet V3 Frontend
Blockchain Web Wallet Frontend
Stars: ✭ 192 (-8.57%)
Mutual labels:  yarn
Yarnhook
Run `yarn install`, `npm install` or `pnpm install` on git hooks automatically
Stars: ✭ 177 (-15.71%)
Mutual labels:  yarn
Atom Autocomplete Module Import
⚛️ Search & install npm packages from import/require statements.
Stars: ✭ 182 (-13.33%)
Mutual labels:  yarn
Codeigniter Phpstorm
PhpStorm Code Completion to CodeIgniter
Stars: ✭ 194 (-7.62%)
Mutual labels:  completion
Ni
💡 Use the right package manager
Stars: ✭ 179 (-14.76%)
Mutual labels:  yarn
Dialetus Service
API to Informal dictionary for the idiomatic expressions that each Brazilian region It has
Stars: ✭ 202 (-3.81%)
Mutual labels:  yarn
Evans
Evans: more expressive universal gRPC client
Stars: ✭ 2,710 (+1190.48%)
Mutual labels:  completion
Script Progress
Estimate script execution time
Stars: ✭ 175 (-16.67%)
Mutual labels:  yarn
Front End Guide
📚 Study guide and introduction to the modern front end stack.
Stars: ✭ 14,073 (+6601.43%)
Mutual labels:  yarn
Gulp Webpack Starter
Gulp Webpack Starter - fast static website builder. The starter uses gulp toolkit and webpack bundler. Download to get an awesome development experience!
Stars: ✭ 199 (-5.24%)
Mutual labels:  yarn

yarn-completion

Bash ^4.x completion for Yarn

Installation

To enable on-demand completion loading, download the completion file to the predefined bash-completion user directory.

$ curl -o "${BASH_COMPLETION_USER_DIR:-${XDG_DATA_HOME:-$HOME/.local/share}/bash-completion}/completions/yarn" https://raw.githubusercontent.com/dsifford/yarn-completion/master/yarn-completion.bash

Installation on macOS with Homebrew

  1. bash version ^4.x.x is required.

    brew install bash
    
    # Add installed bash to /etc/shells
    sudo echo /usr/local/bin/bash >> /etc/shells
    # or
    echo /usr/local/bin/bash | sudo tee -a /etc/shells
    
    # Set installed bash as your default login shell
    chsh -s /usr/local/bin/bash
    
  2. Install [email protected] if you have not done it yet:

    brew install [email protected]
    ## + copy one line to ~/.bash_profile as instructed by brew after bash-completion setup
    
  3. Install yarn-completion:

    mkdir -p "${BASH_COMPLETION_USER_DIR:-${XDG_DATA_HOME:-$HOME/.local/share}/bash-completion}/completions"
    curl -o "${BASH_COMPLETION_USER_DIR:-${XDG_DATA_HOME:-$HOME/.local/share}/bash-completion}/completions/yarn" https://raw.githubusercontent.com/dsifford/yarn-completion/master/yarn-completion.bash
    
  4. Restart Terminal.

FAQ

Will you support bash 3?

No. Bash 3 is now 9 years outdated (at time of writing). There is no conceivable reason why anybody would or should still be using bash 3. Upgrade to the latest version of bash.

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].