+ e opens $EDITOR (thanks @holman) + h is same as 'c' but in home directory (thanks @holman) + updated gitconfig
8 lines
78 B
Bash
Executable File
8 lines
78 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$1" == "" ]; then
|
|
exec $EDITOR .
|
|
else
|
|
exec $EDITOR $1
|
|
fi
|