Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Oh My Zsh
Commits
cc065c7b
Commit
cc065c7b
authored
May 26, 2020
by
Marc Cornellà
Browse files
Remove git-remote-branch and nyan plugins (deprecated)
parent
2d6965f8
Changes
4
Show whitespace changes
Inline
Side-by-side
plugins/git-remote-branch/README.md
deleted
100644 → 0
View file @
2d6965f8
# git-remote-branch plugin
This plugin adds completion for
[
`grb`
](
https://github.com/webmat/git_remote_branch
)
,
or
`git_remote_branch`
.
To use it, add
`git-remote-branch`
to the plugins array of your zshrc file:
```
zsh
plugins
=(
... git-remote-branch
)
```
## Deprecation
[
git_remote_branch was archived in 2018
](
https://github.com/webmat/git_remote_branch#archived
)
,
meaning it's not actively maintained anymore. Use at your own risk.
plugins/git-remote-branch/git-remote-branch.plugin.zsh
deleted
100644 → 0
View file @
2d6965f8
_git_remote_branch
()
{
ref
=
$(
git symbolic-ref HEAD 2> /dev/null
)
if
[[
-n
$ref
]]
;
then
if
((
CURRENT
==
2
))
;
then
# first arg: operation
compadd create publish rename delete track
elif
((
CURRENT
==
3
))
;
then
# second arg: remote branch name
remotes
=
`
git remote |
tr
'\n'
'|'
|
sed
"s/
\|
$/
/g"
`
compadd
`
git branch
-r
|
grep
-v
HEAD |
sed
"s/
$remotes
\/
//"
|
sed
"s/ //g"
`
elif
((
CURRENT
==
4
))
;
then
# third arg: remote name
compadd
`
git remote
`
fi
else
;
_files
fi
}
compdef _git_remote_branch grb
plugins/nyan/README.md
deleted
100644 → 0
View file @
2d6965f8
# Nyan plugin
This plugin adds a command to display
[
Nyan Cat
](
https://en.wikipedia.org/wiki/Nyan_Cat
)
right inside your terminal.
**Plugin is deprecated**
. Check
[
official repo
](
https://github.com/klange/nyancat
)
for more information.
\ No newline at end of file
plugins/nyan/nyan.plugin.zsh
deleted
100644 → 0
View file @
2d6965f8
print
-Pn
'%F{yellow}'
cat
>
&2
<<-
EOD
nyan plugin:
The nyancat server used by this plugin was shut down due to increased
bandwidth costs, so the nyan plugin no longer works. You can get the
same functionality in some distributions by installing the nyancat package,
or you can compile it yourself.
See https://github.com/klange/nyancat for more information.
EOD
print
-Pn
'%f'
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