summaryrefslogtreecommitdiff
path: root/doc/dwb.1
diff options
context:
space:
mode:
authorportix <none@none>2012-04-13 20:20:27 +0200
committerportix <none@none>2012-04-13 20:20:27 +0200
commit1440fa9e6f8b392ad197729064db6ea063784bc5 (patch)
treeb742851848c0af8dabb6b9916e6416dc200a99ef /doc/dwb.1
parente3dd85d00a552295c078c8f9bf1d8fde0773e547 (diff)
downloaddwb-1440fa9e6f8b392ad197729064db6ea063784bc5.zip
Fixing typo in the man page, alias js for execute_javascript
Diffstat (limited to 'doc/dwb.1')
-rw-r--r--doc/dwb.18
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/dwb.1 b/doc/dwb.1
index 45ac92fd..c2e1f7d3 100644
--- a/doc/dwb.1
+++ b/doc/dwb.1
@@ -861,7 +861,7 @@ aliases:
Execute a javascript snippet (command
.BR execute_javascript ,
aliases:
-.BR exja ).
+.BR exja, js ).
.TP
.BR unbound
Set a setting from commandline (command
@@ -1015,7 +1015,7 @@ clear_tab |clear |Clear tab
close_tab |close |Close tab
dump | |Write html of current website to a
| |file or stdout if no argument is given
-execute_javascript |exja |Execute a javascript snippet
+execute_javascript |exja, js |Execute a javascript snippet
execute_userscript | |Execute userscript
find_backward |bfind |Find backward
find_backward_ic |ibfind |Find backward case sensitive
@@ -2070,7 +2070,7 @@ The following script will download the actual webpage:
#!/bin/bash
# dwb: Control w
- wget $1
+ wget $DWB_URI
.fi
@@ -2080,7 +2080,7 @@ Popup an alert dialog:
#!/bin/bash
# dwb: Control h
- echo "execute_javascript:window.alert('Hello world');" > ${DWB_FIFO}
+ echo "js window.alert('Hello world');" > ${DWB_FIFO}
.fi