aboutsummaryrefslogtreecommitdiffhomepage
path: root/README
diff options
context:
space:
mode:
authorGravatar Dieter Plaetinck <dieter@plaetinck.be>2009-05-17 20:01:51 +0200
committerGravatar Dieter Plaetinck <dieter@plaetinck.be>2009-05-17 20:01:51 +0200
commit62efbb6eacabe2cdd746b68dd7e06049396bdf5b (patch)
treeb2a8ed9db26b8c6842cfd8b2bbd80c1724918765 /README
parentf01f0145e4675270506229a4c11b63853ec2a168 (diff)
markup fixes
Diffstat (limited to 'README')
-rw-r--r--README61
1 files changed, 31 insertions, 30 deletions
diff --git a/README b/README
index 70433ab..60a6cb1 100644
--- a/README
+++ b/README
@@ -117,7 +117,8 @@ Examples:
# uzbl will load the url when you type: 'o <url><enter>'
bind o _ = uri %s
- # a search action which is called on every character you type after the slash, letting you see the search narrow down on the words as you type it. Hitting return, enter or esc will terminate the search.
+ # a search action which is called on every character typed after the slash, letting you see the search narrow down while typing.
+ # Hitting return, enter or esc will terminate the search.
bind /* = search %s
# when you type `ZZ` and nothing else, the exit action will be triggered immediately.
bind ZZ = exit
@@ -134,35 +135,35 @@ For example, if you have a binding like "o _" that opens an URL, then you could
Actions are invoked via bindings and by the ACT command. Most actions are self-explanatory, though a few need to be clarified. A list of
actions follows:
- * `back`
- * `forward`
- * `scroll_vert <amount>`
- * `scroll_horiz <amount>`
- * `scroll_begin`
- * `scroll_end`
- * `reload`
- * `reload_ign_cache`
- * `stop`
- * `zoom_in`
- * `zoom_out`
- * `uri <address>`
- * `script <body>`
- - execute the javascript in `<body>`
- - remember that the commands, and thus actions, must not contain line breaks
- * `toggle_status`
- * `spawn <executable> <additonal args>`
- - runs a command; see EXTERNAL SCRIPTS for details
- - PATH is searched so giving the full path to commands is not neccessary
- - note that the arguments as specified in "EXTERNAL SCRIPTS" are appended at the end, so the argument numbers will be higher.
- * `sh <command>`
- - runs a shell command by expanding `%s` in the `shell_cmd` variable with the specified command; primarily useful as a shortcut for `spawn sh -c <body>`
- - note that the arguments as specified in "EXTERNAL SCRIPTS" are appended at the end, so the argument numbers will be higher.
- * `exit`
- * `search <string>`
- * `search_reverse <string>`
- * `insert_mode`
- * `runcmd`
- - can be used for running a command such as SET or BIND
+* `back`
+* `forward`
+* `scroll_vert <amount>`
+* `scroll_horiz <amount>`
+* `scroll_begin`
+* `scroll_end`
+* `reload`
+* `reload_ign_cache`
+* `stop`
+* `zoom_in`
+* `zoom_out`
+* `uri <address>`
+* `script <body>`
+ - execute the javascript in `<body>`
+ - remember that the commands, and thus actions, must not contain line breaks
+* `toggle_status`
+* `spawn <executable> <additonal args>`
+ - runs a command; see EXTERNAL SCRIPTS for details
+ - PATH is searched so giving the full path to commands is not neccessary
+ - note that the arguments as specified in "EXTERNAL SCRIPTS" are appended at the end, so the argument numbers will be higher.
+* `sh <command>`
+ - runs a shell command by expanding `%s` in the `shell_cmd` variable with the specified command; primarily useful as a shortcut for `spawn sh -c <body>`
+ - note that the arguments as specified in "EXTERNAL SCRIPTS" are appended at the end, so the argument numbers will be higher.
+* `exit`
+* `search <string>`
+* `search_reverse <string>`
+* `insert_mode`
+* `runcmd`
+ - can be used for running a command such as SET or BIND
### VARIABLE REPLACEMENT