Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
6ebf27b8
Commit
6ebf27b8
authored
Oct 05, 2020
by
Marc Cornellà
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Remove redundant bashcompinit calls"
This reverts commit
f776af2a
. Fixes #9314
parent
fbb2b56c
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
2 deletions
+10
-2
aws.plugin.zsh
plugins/aws/aws.plugin.zsh
+1
-0
compleat.plugin.zsh
plugins/compleat/compleat.plugin.zsh
+5
-2
drush.plugin.zsh
plugins/drush/drush.plugin.zsh
+2
-0
stack.plugin.zsh
plugins/stack/stack.plugin.zsh
+1
-0
wp-cli.plugin.zsh
plugins/wp-cli/wp-cli.plugin.zsh
+1
-0
No files found.
plugins/aws/aws.plugin.zsh
View file @
6ebf27b8
...
@@ -64,6 +64,7 @@ fi
...
@@ -64,6 +64,7 @@ fi
# AWS CLI v2 comes with its own autocompletion. Check if that is there, otherwise fall back
# AWS CLI v2 comes with its own autocompletion. Check if that is there, otherwise fall back
if
command
-v
aws_completer &> /dev/null
;
then
if
command
-v
aws_completer &> /dev/null
;
then
autoload
-Uz
bashcompinit
&&
bashcompinit
complete
-C
aws_completer aws
complete
-C
aws_completer aws
else
else
function
_awscli-homebrew-installed
()
{
function
_awscli-homebrew-installed
()
{
...
...
plugins/compleat/compleat.plugin.zsh
View file @
6ebf27b8
...
@@ -10,8 +10,11 @@ if (( ${+commands[compleat]} )); then
...
@@ -10,8 +10,11 @@ if (( ${+commands[compleat]} )); then
local
setup
=
"
${
prefix
}
/share/compleat-1.0/compleat_setup"
local
setup
=
"
${
prefix
}
/share/compleat-1.0/compleat_setup"
if
[[
-f
"
$setup
"
]]
;
then
if
[[
-f
"
$setup
"
]]
;
then
if
!
bashcompinit
>
/dev/null 2>&1
;
then
autoload
-U
bashcompinit
bashcompinit
-i
fi
source
"
$setup
"
source
"
$setup
"
fi
fi
unset
prefix setup
fi
fi
plugins/drush/drush.plugin.zsh
View file @
6ebf27b8
...
@@ -99,4 +99,6 @@ alias drvg="drush variable-get"
...
@@ -99,4 +99,6 @@ alias drvg="drush variable-get"
alias
drvs
=
"drush variable-set"
alias
drvs
=
"drush variable-set"
# Enable drush autocomplete support
# Enable drush autocomplete support
autoload bashcompinit
bashcompinit
source
$(
dirname
$0
)
/drush.complete.sh
source
$(
dirname
$0
)
/drush.complete.sh
plugins/stack/stack.plugin.zsh
View file @
6ebf27b8
((
$+
commands[stack]
))
||
return
((
$+
commands[stack]
))
||
return
autoload
-U
+X bashcompinit
&&
bashcompinit
source
<
(
stack
--bash-completion-script
stack
)
source
<
(
stack
--bash-completion-script
stack
)
plugins/wp-cli/wp-cli.plugin.zsh
View file @
6ebf27b8
...
@@ -138,6 +138,7 @@ alias wpwm='wp widget move'
...
@@ -138,6 +138,7 @@ alias wpwm='wp widget move'
alias
wpwu
=
'wp widget update'
alias
wpwu
=
'wp widget update'
autoload
-U
+X bashcompinit
&&
bashcompinit
# bash completion for the `wp` command
# bash completion for the `wp` command
_wp_complete
()
{
_wp_complete
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment