aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
authorGravatar Mason Larobina <mason.larobina@gmail.com>2010-01-09 13:47:54 +0800
committerGravatar Mason Larobina <mason.larobina@gmail.com>2010-01-09 13:47:54 +0800
commit36029e1faf0761607e3192fb4968f3228d84af9f (patch)
treeebf10941a1fd0d8327074d47f5940830a188191c /examples
parent786744aea678a45136b2692b189ff96d225b9167 (diff)
Comment out anything in the config that used @jsh or the Uzbl object.
Diffstat (limited to 'examples')
-rw-r--r--examples/config/uzbl/config12
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/config/uzbl/config b/examples/config/uzbl/config
index 3edb36c..e53dd1a 100644
--- a/examples/config/uzbl/config
+++ b/examples/config/uzbl/config
@@ -35,7 +35,7 @@ set shell_cmd = sh -c
set scripts_dir = $XDG_DATA_HOME/uzbl:@prefix/share/uzbl/examples/data/uzbl:scripts
# Javascipt helpers.
-set jsh = js var run=Uzbl.run; function get(k){return run("print \\\@"+k)}; function set(k, v) {run("set "+k+" = "+v)};
+#set jsh = js var run=Uzbl.run; function get(k){return run("print \\\@"+k)}; function set(k, v) {run("set "+k+" = "+v)};
# === Handlers ===============================================================
@@ -71,7 +71,7 @@ set new_window = sh 'uzbl-browser -u $8'
# Generate a FORM_ACTIVE event if an editable
# element on the loaded site has initial focus
-@on_event LOAD_FINISH js if(document.activeElement.type == 'text') {Uzbl.run("event FORM_ACTIVE");}
+#@on_event LOAD_FINISH js if(document.activeElement.type == 'text') {Uzbl.run("event FORM_ACTIVE");}
# Switch to insert mode if a (editable) html form is clicked
@on_event FORM_ACTIVE @set_mode insert
@@ -192,9 +192,9 @@ set ebind = @mode_bind global,-insert
# Middle click
# if clicked on a link open the link in a new uzbl window
# otherwise open the selection in the current window
-set load_from_xclip = sh 'echo "uri $(xclip -o)" > $4'
-set open_new_window = sh 'uzbl-browser -u \@SELECTED_URI'
-@bind <Button2> = @jsh if(get("SELECTED_URI")) { run("\@open_new_window"); } else { run("\\\@load_from_xclip"); }
+#set load_from_xclip = sh 'echo "uri $(xclip -o)" > $4'
+#set open_new_window = sh 'uzbl-browser -u \@SELECTED_URI'
+#@bind <Button2> = @jsh if(get("SELECTED_URI")) { run("\@open_new_window"); } else { run("\\\@load_from_xclip"); }
# === Keyboard bindings ======================================================
@@ -276,7 +276,7 @@ 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 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');
# Go the page from primary selection
@cbind p = sh 'echo "uri `xclip -selection primary -o`" > $4'