0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

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

This commit is contained in:
Alexander Berezovsky 2016-05-21 17:52:11 -07:00 committed by Robby Russell
parent 670a470a85
commit 9ad9ac69a6

View file

@ -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