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/commands.c | |
parent | 6e20ff1abc60aeca0eed71a60033f0ccef1f0997 (diff) | |
download | dwb-992d7456cbc3b8e1c7fc1d29310b404ddcb378a4.zip |
New commands reload_bookmarks, reload_quickmarks; new signal function connectWebView; new signal tabButtonPress
Diffstat (limited to 'src/commands.c')
-rw-r--r-- | src/commands.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/commands.c b/src/commands.c index 6ab6b6aa..02bb2e5a 100644 --- a/src/commands.c +++ b/src/commands.c @@ -1011,6 +1011,18 @@ commands_toggle_tab(KeyMap *km, Arg *arg) } return STATUS_ERROR; } +DwbStatus +commands_reload_bookmarks(KeyMap *km, Arg *arg) +{ + dwb_reload_bookmarks(); + return STATUS_OK; +} +DwbStatus +commands_reload_quickmarks(KeyMap *km, Arg *arg) +{ + dwb_reload_quickmarks(); + return STATUS_OK; +} #if 0 DwbStatus |