updated aliases to have an interminal and out of terminal vim alias

pull/1/merge
Adam Veldhousen 2015-01-07 13:58:03 -06:00
parent c5a7d30f04
commit d19f2ae8c3
1 changed files with 3 additions and 2 deletions

View File

@ -57,7 +57,7 @@ function clone()
}
# runs vim in the terminal without forking, great for tmux on my mac
function termvim(){
function vimt(){
if [[ $# -eq 0 ]]; then
vim
else
@ -65,8 +65,9 @@ function termvim(){
fi
}
# runs vim outside of the term by forking the command and gvim, great for my windows box
function vim(){
function vimd(){
if [[ $# -eq 0 ]]; then
gvim &
else