1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2026-02-13 12:50:58 +01:00

common-aliases: Drop domain names from browser alias list

This commit is contained in:
Alexander Schlarb
2018-08-09 20:50:27 +02:00
parent 3cb5a9097b
commit 5889f4cfc9

View File

@@ -54,7 +54,7 @@ autoload -Uz is-at-least
if is-at-least 4.2.0; then
# open browser on urls
if [[ -n "$BROWSER" ]]; then
_browser_fts=(htm html xhtml de org net com at cx nl se dk)
_browser_fts=(htm html xhtml)
for ft in $_browser_fts; do alias -s $ft='$BROWSER'; done
fi