aboutsummaryrefslogtreecommitdiffhomepage
path: root/README
diff options
context:
space:
mode:
authorGravatar Dan Hackney <dan@haxney.org>2009-12-30 19:06:56 -0500
committerGravatar Dan Hackney <dan@haxney.org>2009-12-30 19:06:56 -0500
commit495efe831db2d8abd2f04b5e5a01fe5ce84e164a (patch)
treef1bb114d6c82cf117416e475bf2a81c4fd6e88c2 /README
parent1c591fc174dbd12e6780fd8ff52e80804c712b35 (diff)
Fix two spaces after period.
There should be a single space after periods, especially since Markdown ignores any extra spaces when formatting. Signed-off-by: Dan Hackney <dan@haxney.org>
Diffstat (limited to 'README')
-rw-r--r--README6
1 files changed, 3 insertions, 3 deletions
diff --git a/README b/README
index 1c38c74..ed71ad5 100644
--- a/README
+++ b/README
@@ -189,7 +189,7 @@ The following commands are recognized:
### VARIABLES AND CONSTANTS
-Uzbl has a lot of internal variables and constants. You can get the values (using the `print` command, see above), and for variables you can also change the value at runtime. Some of the values can be passed at start up through commandline arguments, others need to be set by using commands (eg in config file).
+Uzbl has a lot of internal variables and constants. You can get the values (using the `print` command, see above), and for variables you can also change the value at runtime. Some of the values can be passed at start up through commandline arguments, others need to be set by using commands (eg in config file).
* Some of them have default values (see config.h)
* Some variables have callback functions which will get called after setting the variable to perform some additional logic (see below).
@@ -344,7 +344,7 @@ The `status_format` variable can contain [Pango](http://library.gnome.org/devel/
You can use external scripts with Uzbl the following ways:
* Let `uzbl` call them. These scripts are called "handlers" in the `uzbl` config. Used for handling cookies, starting a new download, and more.
-* Call them yourself from inside `uzbl`. You can bind keys for this. Examples: add new bookmark, load new url.
+* Call them yourself from inside `uzbl`. You can bind keys for this. Examples: add new bookmark, load new url.
* You could also use `xbindkeys` or your WM config to trigger scripts if `uzbl` does not have focus.
Have a look at the sample configs and scripts!
@@ -416,7 +416,7 @@ Copying the Uzbl object and creating public functions should be taken with care
### EVENTS
-Unlike commands, events are not handled in `uzbl` itself, but are propagated (dispatched) asynchronously through a text stream on `stdout` and/or through a socket. You'll usually use uzbl by piping it's output to a so-called "event manager" (EM), or by having the EM listen to a socket.
+Unlike commands, events are not handled in `uzbl` itself, but are propagated (dispatched) asynchronously through a text stream on `stdout` and/or through a socket. You'll usually use uzbl by piping it's output to a so-called "event manager" (EM), or by having the EM listen to a socket.
The EM allows: