aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/data/scripts/util/editor.sh
blob: 19697696735e115cbc906ac7316384c6fd763c1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
# Editor selection

if [ -z "$VTERM" ]; then
    VTERM="xterm"
fi

UZBL_EDITOR="$VISUAL"
if [ -z "$UZBL_EDITOR" ]; then
    if [ -z "$EDITOR" ]; then
        UZBL_EDITOR="$VTERM -e vim"
    else
        UZBL_EDITOR="$VTERM -e $EDITOR"
    fi
fi