diff options
author | portix <none@none> | 2012-12-19 18:32:40 +0100 |
---|---|---|
committer | portix <none@none> | 2012-12-19 18:32:40 +0100 |
commit | 992d7456cbc3b8e1c7fc1d29310b404ddcb378a4 (patch) | |
tree | 9099933dff7b445e630962a5654bf55514e5f50e /src/config.h | |
parent | 6e20ff1abc60aeca0eed71a60033f0ccef1f0997 (diff) | |
download | dwb-992d7456cbc3b8e1c7fc1d29310b404ddcb378a4.zip |
New commands reload_bookmarks, reload_quickmarks; new signal function connectWebView; new signal tabButtonPress
Diffstat (limited to 'src/config.h')
-rw-r--r-- | src/config.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/config.h b/src/config.h index 02bb6e48..a473080e 100644 --- a/src/config.h +++ b/src/config.h @@ -184,6 +184,8 @@ static KeyValue KEYS[] = { { "eval", { NULL, 0, 0 }, }, { "download", { "gd", 0, 0 }, }, { "toggle_tab", { "@Tab@", GDK_CONTROL_MASK, 0 }, }, + { "reload_bookmarks", { NULL, 0, 0 }, }, + { "reload_quickmarks", { NULL, 0, 0 }, }, #if 1 { "group_tag", { "am", 0, 0 }, }, { "group_show", { "as", 0, 0 }, }, @@ -210,6 +212,12 @@ static FunctionMap FMAP [] = { { .p = NULL }, EP_NONE, { NULL }, }, #endif + { { "reload_quickmarks", "Reload quickmarks", }, CP_COMMANDLINE, + (Func)commands_reload_quickmarks, NULL, ALWAYS_SM, + { .p = NULL }, EP_NONE, { NULL }, }, + { { "reload_bookmarks", "Reload bookmarks", }, CP_COMMANDLINE, + (Func)commands_reload_bookmarks, NULL, ALWAYS_SM, + { .p = NULL }, EP_NONE, { NULL }, }, { { "toggle_tab", "Toggle between last and current tab", }, CP_COMMANDLINE, (Func)commands_toggle_tab, NULL, ALWAYS_SM, { .p = NULL }, EP_NONE, { "ttab" }, }, |