From: Daniel Carl Date: Sun, 7 May 2017 12:42:20 +0000 (+0200) Subject: Clear hints on entering normal mode #349. X-Git-Url: https://git.owens.tech///git?a=commitdiff_plain;h=d307f9ca34655de66303810bc64ee5021e3647d3;p=vimb.git Clear hints on entering normal mode #349. --- diff --git a/src/normal.c b/src/normal.c index 9ea22ef..4286cef 100644 --- a/src/normal.c +++ b/src/normal.c @@ -23,6 +23,7 @@ #include "ascii.h" #include "command.h" #include "config.h" +#include "hints.h" #include "ext-proxy.h" #include "main.h" #include "normal.h" @@ -219,7 +220,7 @@ void normal_enter(Client *c) /* Make sure that when the browser area becomes visible, it will get mouse * and keyboard events */ gtk_widget_grab_focus(GTK_WIDGET(c->webview)); - /* TODO clear possible active hints */ + hints_clear(c); } /**