aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Dieter Plaetinck <dieter@plaetinck.be>2009-04-26 21:16:23 +0200
committerGravatar Dieter Plaetinck <dieter@plaetinck.be>2009-04-26 21:16:23 +0200
commitbc2a398fae253156e17a8d988361e86b24df7db9 (patch)
tree8d6ae8d247f97fec261c0c6987d262445df0d6a2
parentc3be3f21d7dc8cce68bcf122a78a97ce1fb2a8c7 (diff)
todo cleanups
-rw-r--r--TODO3
-rw-r--r--uzbl.c2
2 files changed, 1 insertions, 4 deletions
diff --git a/TODO b/TODO
index 2b91bc5..1b0a0f2 100644
--- a/TODO
+++ b/TODO
@@ -1,15 +1,12 @@
* implement all the ideas from README
* get a logo
* improve site
-* get rid of segfaults for --config -> barrucadu
* Support for binding keyboard shortcuts in config file.
* where to put proxy config? webkit support?
-* improve commandline arguments
* implement XDG basedir spec
* check configured commands if they end on .sh so users don't need to prepend /bin/<shell>
* implement a more advanced dmenu alike that behaves like FF's awesomebar and where you can search in url + window title
* recognize -h with GOption?
-* fix config loading from arg
* implement a vimperator-like link following scheme. but let user pick his favorite characters to construct the "link identifiers" with.
* add a keybind to hand the current url to an external scrips, so you can edit it and/or store it in the primary and secondary clipboards
diff --git a/uzbl.c b/uzbl.c
index 9337e08..97da165 100644
--- a/uzbl.c
+++ b/uzbl.c
@@ -399,7 +399,7 @@ settings_init () {
printf("Config file: %s\n", config_file);
GKeyFile* config = g_key_file_new ();
- gboolean res = g_key_file_load_from_file (config, config_file, G_KEY_FILE_NONE, NULL); //TODO: pass config file as argument
+ gboolean res = g_key_file_load_from_file (config, config_file, G_KEY_FILE_NONE, NULL);
if (res) {
printf ("Config loaded\n");