removed windows and linux split subdir
This commit is contained in:
parent
83dda10fa8
commit
065b982734
280 changed files with 9053 additions and 426 deletions
13
.antidote/functions/__antidote_tourl
Normal file
13
.antidote/functions/__antidote_tourl
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#!/bin/zsh
|
||||
|
||||
### Get the url from a repo bundle.
|
||||
#function __antidote_tourl {
|
||||
emulate -L zsh; setopt local_options $_adote_funcopts
|
||||
|
||||
local bundle=$1
|
||||
local url=$bundle
|
||||
if [[ $bundle != *://* && $bundle != git@*:*/* ]]; then
|
||||
url=https://github.com/$bundle
|
||||
fi
|
||||
print $url
|
||||
#}
|
||||
Loading…
Add table
Add a link
Reference in a new issue