浏览代码

Change vim command to $EDITOR for consistency (#5063)

Alexander Berezovsky 8 年之前
父节点
当前提交
9ad9ac69a6
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      plugins/fasd/fasd.plugin.zsh

+ 1 - 1
plugins/fasd/fasd.plugin.zsh

@@ -6,6 +6,6 @@ if [ $commands[fasd] ]; then # check if fasd is installed
   source "$fasd_cache"
   unset fasd_cache
 
-  alias v='f -e vim'
+  alias v="f -e $EDITOR"
   alias o='a -e open_command'
 fi