aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/config
diff options
context:
space:
mode:
authorGravatar Mason Larobina <mason.larobina@gmail.com>2010-01-11 20:05:32 +0800
committerGravatar Mason Larobina <mason.larobina@gmail.com>2010-01-11 20:05:32 +0800
commitc6756f9373b837aa3ff499f1e6bd7477d0eec361 (patch)
treeeae0fe8fe53e9b64dfc8450757af5a71fc2020d6 /examples/config
parent36029e1faf0761607e3192fb4968f3228d84af9f (diff)
Fix yank bind now that the Uzbl object is gone.
Diffstat (limited to 'examples/config')
-rw-r--r--examples/config/uzbl/config3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/config/uzbl/config b/examples/config/uzbl/config
index e53dd1a..2832505 100644
--- a/examples/config/uzbl/config
+++ b/examples/config/uzbl/config
@@ -276,7 +276,8 @@ set toggle_cmd_ins = @toggle_modes command insert
@cbind gh = uri http://www.uzbl.org
# --- Yanking & pasting binds ---
-#@cbind y<Yank (t)itle or (u)rl:>* = @jsh if('%s' == 'u') { run("sh 'echo -n $6 | xclip'"); } else if('%s' == 't') { run("sh 'echo -n $7 | xclip'"); }; run('event SET_KEYCMD');
+@cbind yu = sh 'echo -n $6 | xclip'
+@cbind yy = sh 'echo -n $7 | xclip'
# Go the page from primary selection
@cbind p = sh 'echo "uri `xclip -selection primary -o`" > $4'