Merge pull request #4689 from apjanke/fix-non-numeric-versions

common-aliases: handle "dev" versions in version check
master
Marc Cornellà 11 years ago
commit 5e950d4fa0
  1. 2
      plugins/common-aliases/common-aliases.plugin.zsh

@ -52,7 +52,7 @@ alias mv='mv -i'
# zsh is able to auto-do some kungfoo
# depends on the SUFFIX :)
if [ ${ZSH_VERSION//\./} -ge 420 ]; then
if is-at-least 4.2.0; then
# open browser on urls
_browser_fts=(htm html de org net com at cx nl se dk dk php)
for ft in $_browser_fts ; do alias -s $ft=$BROWSER ; done

Loading…
Cancel
Save