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
cc065c7b
Commit
cc065c7b
authored
May 26, 2020
by
Marc Cornellà
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove git-remote-branch and nyan plugins (deprecated)
parent
2d6965f8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
49 deletions
+0
-49
README.md
plugins/git-remote-branch/README.md
+0
-15
git-remote-branch.plugin.zsh
plugins/git-remote-branch/git-remote-branch.plugin.zsh
+0
-19
README.md
plugins/nyan/README.md
+0
-5
nyan.plugin.zsh
plugins/nyan/nyan.plugin.zsh
+0
-10
No files found.
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