From 9ecd1220fabdcf210aab46afc46c6d6627a4fe21 Mon Sep 17 00:00:00 2001 From: Chip Black Date: Tue, 2 Jun 2009 04:12:13 -0500 Subject: [PATCH] Minor fixes Made the launcher script work from anywhere, and remove duplicate BackSpace handler in Vimish.cs --- WebThing | 2 ++ plugins/Vimish.cs | 3 --- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/WebThing b/WebThing index 50e56f3..c999914 100755 --- a/WebThing +++ b/WebThing @@ -1,5 +1,7 @@ #!/bin/sh +cd `dirname "$0"` + export LD_LIBRARY_PATH=plugins:$LD_LIBRARY_PATH echo $LD_LIBRARY_PATH diff --git a/plugins/Vimish.cs b/plugins/Vimish.cs index ad2a9e5..7ed071f 100644 --- a/plugins/Vimish.cs +++ b/plugins/Vimish.cs @@ -43,9 +43,6 @@ public class Plugin { case Gdk.Key.t: CommandStart("tabopen "); break; - case Gdk.Key.BackSpace: - wt.WebView.GoBack(); - break; case Gdk.Key.colon: CommandlineShow(); break; -- 2.25.1