From: Daniel Carl Date: Sun, 3 Nov 2013 19:09:10 +0000 (+0100) Subject: Changed the history indicator chars. X-Git-Url: https://git.owens.tech/assets/favicon.png/assets/favicon.png/git?a=commitdiff_plain;h=8a85f0bc9ad6c10d49a9b486ef7e6d6f159a7e3a;p=vimb.git Changed the history indicator chars. The chars for the history indicator from those of vimprobable to those that pentadactyl uses '-' = can go back and '+' can go forward. --- diff --git a/src/main.c b/src/main.c index aa5c453..f3d170a 100644 --- a/src/main.c +++ b/src/main.c @@ -325,7 +325,7 @@ void vb_update_urlbar(const char *uri) /* show history indicator only if there is something to show */ if (back || fwd) { - str = g_strdup_printf("%s [%s]", uri, back ? (fwd ? "+-" : "+") : "-"); + str = g_strdup_printf("%s [%s]", uri, back ? (fwd ? "-+" : "-") : "+"); gtk_label_set_text(GTK_LABEL(gui->statusbar.left), str); g_free(str); } else {