mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-02-13 03:01:32 +01:00
Merge branch 'feature/caniuse-plugin'
* feature/caniuse-plugin: Added CanIUse plugin
This commit is contained in:
commit
7276e8a60e
1 changed files with 23 additions and 0 deletions
23
plugins/caniuse/caniuse.plugin.zsh
Normal file
23
plugins/caniuse/caniuse.plugin.zsh
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
# CanIUse.com Command Line Search Utility
|
||||
# Michael Wales, http://github.com/walesmd
|
||||
#
|
||||
# A very basic bash function that quickly searches http://caniuse.com/
|
||||
#
|
||||
# Examples:
|
||||
# caniuse
|
||||
# caniuse border-radius
|
||||
# caniuse "alpha transparency" counters "canvas drawings" html svg
|
||||
|
||||
caniuse() {
|
||||
local domain="http://caniuse.com/"
|
||||
local query
|
||||
|
||||
if [ $# -eq 0 ]; then
|
||||
open ${domain}
|
||||
else
|
||||
for term in "$@"; do
|
||||
query=$(python -c "import sys, urllib as ul; print ul.quote('${term}');")
|
||||
open "${domain}#search=${query}"
|
||||
done
|
||||
fi
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue