added keybinds sheet
This commit is contained in:
parent
905a7e9941
commit
1ed34857d3
9
surf.c
9
surf.c
|
@ -527,10 +527,10 @@ void close_tab(Client *c, const Arg *a) {
|
|||
|
||||
if (index <= c->selected_tab && c->selected_tab > 0) {
|
||||
c->selected_tab -= 1;
|
||||
suspend_tab(c);
|
||||
}
|
||||
|
||||
update_tab_bar(c);
|
||||
suspend_tab(c);
|
||||
}
|
||||
|
||||
void new_tab(Client *c, const Arg *a) {
|
||||
|
@ -1010,6 +1010,11 @@ loaduri(Client *c, const Arg *a)
|
|||
return;
|
||||
}
|
||||
|
||||
if (g_strcmp0(uri, keybinds_url) == 0) {
|
||||
webkit_web_view_load_alternate_html(c->view, keybinds_html, uri, NULL);
|
||||
return;
|
||||
}
|
||||
|
||||
if (g_str_has_prefix(uri, "http://") ||
|
||||
g_str_has_prefix(uri, "https://") ||
|
||||
g_str_has_prefix(uri, "file://") ||
|
||||
|
@ -2496,7 +2501,7 @@ clickexternplayer(Client *c, const Arg *a, WebKitHitTestResult *h)
|
|||
{
|
||||
Arg arg;
|
||||
|
||||
arg = (Arg)VIDEOPLAY(webkit_hit_test_result_get_media_uri(h));
|
||||
arg = (Arg)VIDEOPLAY(webkit_hit_test_result_get_link_uri(h));
|
||||
spawn(c, &arg);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue