aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Dieter Plaetinck <dieter@plaetinck.be>2009-05-03 17:51:21 +0200
committerGravatar Dieter Plaetinck <dieter@plaetinck.be>2009-05-03 17:51:21 +0200
commit070aab904c4da8d64fbb02b5a2bdc79750fb16d6 (patch)
tree776618e2b64f18af2afc79d8d82581545f0daf5b
parent31fe93a77761eefa2de68c1273d825c93d922332 (diff)
doc updates
-rw-r--r--CHECKLIST4
-rw-r--r--TODO1
2 files changed, 5 insertions, 0 deletions
diff --git a/CHECKLIST b/CHECKLIST
index 2b33d12..9a9bfbf 100644
--- a/CHECKLIST
+++ b/CHECKLIST
@@ -25,8 +25,12 @@ Also testers and interested people can use this list to see what uzbl is about,
* status bar can be toggled on and off, if off, some info (mode) will be put in title bar. position of statusbar (top/bottom) also works
* backspace erases last edit character. esc erases entire command buffer (if in comand mode)
* commands with parameters (keywords): any key sequence that ends with underscore _ expects parameter. Undersore marks exact location where parameter begins. Command part can have %s that will be replaced with parameter.
+ This only works for internal commands. not when spawning external scripts.
:o _ = uri %s - user needs to type :o www.google.com
:O_ = uri %s - user needs to type :Owww.google.com
* when typing command, press insert (paste X cliboard) or shift insert (paste primary selection buffer)
* proxy, user agent and other network settings can be set in config
* scrolling works, with configurable keys (vi-like in sample config)
+* searching:
+ /_ = search %s <-- hilight all
+ ; = search <-- jump over all hits
diff --git a/TODO b/TODO
index 0546009..f44308b 100644
--- a/TODO
+++ b/TODO
@@ -41,3 +41,4 @@ check if we can make the settings loading less hard coded. eg( keep a list of al
figure out caching with webkit and in general how we can speed up everything
figure out how webkit intercepts key input
make "disable insert mode" (esc key) configurable
+keywords don't work for external commands. is this a problem?