diff options
author | portix <portix@gmx.net> | 2012-02-23 12:43:51 +0100 |
---|---|---|
committer | portix <portix@gmx.net> | 2012-02-23 12:43:51 +0100 |
commit | 970c23e627dbbc8389cd6c376d420b41d242d785 (patch) | |
tree | d1c5ccbd8058cd378fc063f7bfe5706132ccf046 /src/config.h | |
parent | e33004c9a1bba53f66aa952a91be1db268d7bd1c (diff) | |
download | dwb-970c23e627dbbc8389cd6c376d420b41d242d785.zip |
Replace dwb://-uris with dwb:-uris
Diffstat (limited to 'src/config.h')
-rw-r--r-- | src/config.h | 34 |
1 files changed, 27 insertions, 7 deletions
diff --git a/src/config.h b/src/config.h index 72617b4c..cf84d51b 100644 --- a/src/config.h +++ b/src/config.h @@ -81,6 +81,10 @@ static KeyValue KEYS[] = { { "scroll_up", { "k", 0, }, }, { "show_keys", { "Sk", 0, }, }, { "show_settings", { "Ss", 0, }, }, + { "show_bookmarks", { "Sb", 0, }, }, + { "show_history", { "Sh", 0, }, }, + { "show_downloads", { "Sd", 0, }, }, + { "show_quickmarks", { "Sq", 0, }, }, { "stop_loading", { "s", GDK_CONTROL_MASK, }, }, { "view_source", { "gf", 0, }, }, { "zoom_in", { "+", 0, }, }, @@ -428,7 +432,7 @@ static FunctionMap FMAP [] = { { { "start_page", "Open startpage", }, 1, (Func)commands_open_startpage, "No startpage set", ALWAYS_SM, - { .p = "dwb://bookmarks" }, EP_NONE, { "home", NULL }, }, + { 0 }, EP_NONE, { "home", NULL }, }, { { "quit", "Quit dwb", }, 1, (Func)commands_quit, NULL, ALWAYS_SM, @@ -510,13 +514,29 @@ static FunctionMap FMAP [] = { (Func)commands_set_key, NULL, NEVER_SM, { 0 }, EP_NONE, { "keys", NULL }, }, - { { "show_keys", "Key configuration", }, 1, - (Func)commands_show_keys, NULL, ALWAYS_SM, - { 0 }, EP_NONE, { "skeys", NULL }, }, + { { "show_bookmarks", "Show bookmarks", }, 1, + (Func)commands_show, NULL, ALWAYS_SM, + { .p = "dwb:bookmarks", .ro = true }, EP_NONE, { "sbookmarks", NULL }, }, + + { { "show_quickmarks", "Show quickmarks", }, 1, + (Func)commands_show, NULL, ALWAYS_SM, + { .p = "dwb:quickmarks", .ro = true }, EP_NONE, { "squickmarks", NULL }, }, + + { { "show_history", "Show quickmarks", }, 1, + (Func)commands_show, NULL, ALWAYS_SM, + { .p = "dwb:history", .ro = true }, EP_NONE, { "shistory", NULL }, }, + + { { "show_downloads", "Show downloads", }, 1, + (Func)commands_show, NULL, ALWAYS_SM, + { .p = "dwb:downloads", .ro = true }, EP_NONE, { "sdownloads", NULL }, }, + { { "show_keys", "Key configuration", }, 1, + (Func)commands_show, NULL, ALWAYS_SM, + { .p = "dwb:keys", .ro = true }, EP_NONE, { "skeys", NULL }, }, + { { "show_settings", "Settings configuration", }, 1, - (Func)commands_show_settings, NULL, ALWAYS_SM, - { 0 }, EP_NONE, { "ssettings", NULL }, }, + (Func)commands_show, NULL, ALWAYS_SM, + { .p = "dwb:settings", .ro = true }, EP_NONE, { "ssettings", NULL }, }, { { "view_source", "View source", }, 1, (Func)commands_view_source, NULL, ALWAYS_SM, @@ -948,7 +968,7 @@ static WebSettings DWB_SETTINGS[] = { { { "auto-completion", "Show possible shortcuts", }, SETTING_GLOBAL, BOOLEAN, { .b = false }, (S_Func)completion_set_autcompletion, }, { { "startpage", "The default homepage", }, - SETTING_GLOBAL, CHAR, { .p = "dwb://bookmarks" }, (S_Func)dwb_set_startpage, }, + SETTING_GLOBAL, CHAR, { .p = "dwb:bookmarks" }, (S_Func)dwb_set_startpage, }, { { "single-instance", "Whether to have only on instance", }, SETTING_GLOBAL, BOOLEAN, { .b = true }, NULL, }, { { "save-session", "Whether to automatically save sessions", }, |