aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/config
diff options
context:
space:
mode:
authorGravatar Mason Larobina <mason.larobina@gmail.com>2010-03-24 13:08:33 +0800
committerGravatar Mason Larobina <mason.larobina@gmail.com>2010-03-24 13:08:33 +0800
commit5e012e22c2733fcf89daa38c3c02da34e5f9d3b2 (patch)
tree55f036068c9e04dbbc6971d4fd6358733f734c7f /examples/config
parentc05dbdd88f63c568f7d74cbf0b8cec3496eb6f13 (diff)
Make `<Shift-Insert>` inject into the keycmd at the cursor position.
Diffstat (limited to 'examples/config')
-rw-r--r--examples/config/config4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/config/config b/examples/config/config
index 8786e8b..de01cf3 100644
--- a/examples/config/config
+++ b/examples/config/config
@@ -306,8 +306,8 @@ set toggle_cmd_ins = @toggle_modes command insert
@cbind P = sh 'echo "uri `xclip -selection clipboard -o | sed s/\\\@/%40/g`" > $4'
# Start a new uzbl instance from the page in primary selection
@cbind 'p = sh 'exec uzbl-browser --uri $(xclip -o)'
-# paste primary selection into keycmd
-@bind <Shift-Insert> = sh 'echo "event APPEND_KEYCMD `xclip -o | sed s/\\\@/%40/g`" > $4'
+# paste primary selection into keycmd at the cursor position
+@bind <Shift-Insert> = sh 'echo "event INJECT_KEYCMD `xclip -o | sed s/\\\@/%40/g`" > $4'
# --- Bookmark inserting binds ---
@cbind <Ctrl>b<tags:>_ = sh 'echo -e "$6 %s" >> $XDG_DATA_HOME/uzbl/bookmarks'