diff options
author | Carlos Fenollosa <carlos.fenollosa@gmail.com> | 2016-10-24 15:33:43 +0200 |
---|---|---|
committer | Carlos Fenollosa <carlos.fenollosa@gmail.com> | 2016-10-24 15:33:43 +0200 |
commit | 2f598c14b85ef08e39fb4fbd236ec229ab2aa62f (patch) | |
tree | 516530226d0e13ead2e3d68ef34d4680404ec058 | |
parent | 5e70713e85511382b978a8e14159b67811db8364 (diff) |
Better error message for vim. Close #112
-rwxr-xr-x | bb.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1110,7 +1110,7 @@ do_main() { # Check for $EDITOR [[ -z $EDITOR ]] && - echo "Please set your \$EDITOR environment variable" && exit + echo "Please set your \$EDITOR environment variable. For example, to use nano, add the line 'export EDITOR=nano' to your \$HOME/.bashrc file" && exit # Check for validity of argument [[ $1 != "reset" && $1 != "post" && $1 != "rebuild" && $1 != "list" && $1 != "edit" && $1 != "delete" && $1 != "tags" ]] && |