From ca485768cb851aa3bbe6600a9c25ad8468ed83e9 Mon Sep 17 00:00:00 2001 From: Lzu Tao Date: Wed, 24 Jul 2024 16:41:35 +0700 Subject: [PATCH] Complete `gem install --user-install` --- share/completions/gem.fish | 1 + 1 file changed, 1 insertion(+) diff --git a/share/completions/gem.fish b/share/completions/gem.fish index 179d81feb..d529c5282 100644 --- a/share/completions/gem.fish +++ b/share/completions/gem.fish @@ -99,6 +99,7 @@ complete $install_opt -s l -l local -d "Restrict operations to the LOCAL domain complete $install_opt -s r -l remote -d "Restrict operations to the REMOTE domain" complete $install_opt -s b -l both -d "Allow LOCAL and REMOTE operations" complete $install_opt -s i -l install-dir -d "Gem repository directory to get installed gems" -x +complete $install_opt -s i -l user-install -d "Install in user's home directory instead of GEM_HOME." complete $install_opt -s N -l no-document -d "Disable documentation generation on install" complete $install_opt -l document -a '(__fish_append , rdoc ri)' -d "Specify the documentation types you wish to generate" complete $install_opt -s f -l force -d "Force gem to install, bypassing dependency checks"