From: Dieter Plaetinck Date: Mon, 8 Jun 2009 20:18:25 +0000 (+0200) Subject: fix quotes regression X-Git-Url: https://vcs.maemo.org/git/?a=commitdiff_plain;h=d3cb6e5f11499f5b76f7e3d2fbb8bb0abc527f7e;p=uzbl-mobile fix quotes regression --- diff --git a/examples/config/uzbl/config b/examples/config/uzbl/config index 714daa2..9606edd 100644 --- a/examples/config/uzbl/config +++ b/examples/config/uzbl/config @@ -134,9 +134,9 @@ bind ytitle = spawn $XDG_DATA_HOME/uzbl/scripts/yank.sh 7 clipboard # does the same as yurl but without needing a script bind y2url = sh 'echo -n $6 | xclip' # go the page from primary selection -bind p = sh "echo uri `xclip -selection primary -o` > $4" +bind p = sh 'echo "uri `xclip -selection primary -o`" > $4' # go to the page in clipboard -bind P = sh "echo uri `xclip -selection clipboard -o` > $4" +bind P = sh 'echo "uri `xclip -selection clipboard -o`" > $4' bind ZZ = exit bind S = js alert("hi"); # example showing how to use sh