浏览代码

common-aliases: handle "dev" versions in version check

Uses `is-at-least` instead of a numeric comparison hack, so versions with non-numeric bits like "4.5.0-dev5" don't throw errors.
Andrew Janke 8 年之前
父节点
当前提交
c52f67746b
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      plugins/common-aliases/common-aliases.plugin.zsh

+ 1 - 1
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