projects
/
vimb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ceac41b
)
Clear hints on entering normal mode #349.
author
Daniel Carl
<danielcarl@gmx.de>
Sun, 7 May 2017 12:42:20 +0000
(14:42 +0200)
committer
Daniel Carl
<danielcarl@gmx.de>
Sun, 7 May 2017 12:42:20 +0000
(14:42 +0200)
src/normal.c
patch
|
blob
|
history
diff --git
a/src/normal.c
b/src/normal.c
index
9ea22ef
..
4286cef
100644
(file)
--- 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);
}
/**