From: Jakub Wilk Date: Fri, 9 Dec 2016 07:37:49 +0000 (+0100) Subject: Fix name of mcedit (#2524) X-Git-Tag: 4.14~80 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=8d739b7fe15fd351b5d703f922db01be46699a92;p=i3%2Fi3 Fix name of mcedit (#2524) It's "mcedit", not "mc-edit". --- diff --git a/i3-sensible-editor b/i3-sensible-editor index b93893a1..ad3f6bdd 100755 --- a/i3-sensible-editor +++ b/i3-sensible-editor @@ -9,7 +9,7 @@ # mechanism to find the preferred editor # Hopefully one of these is installed (no flamewars about preference please!): -for editor in "$VISUAL" "$EDITOR" nano nvim vim vi emacs pico qe mg jed gedit mc-edit; do +for editor in "$VISUAL" "$EDITOR" nano nvim vim vi emacs pico qe mg jed gedit mcedit; do if command -v "$editor" > /dev/null 2>&1; then exec "$editor" "$@" fi diff --git a/man/i3-sensible-editor.man b/man/i3-sensible-editor.man index bfc5c5c6..effae6c0 100644 --- a/man/i3-sensible-editor.man +++ b/man/i3-sensible-editor.man @@ -29,7 +29,7 @@ It tries to start one of the following (in that order): * mg * jed * gedit -* mc-edit +* mcedit Please don’t complain about the order: If the user has any preference, they will have $VISUAL or $EDITOR set.