We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bed5b9e commit 5004ad3Copy full SHA for 5004ad3
1 file changed
vimiumFrontend.js
@@ -125,6 +125,14 @@ function initializePreDomReady() {
125
port.onMessage.addListener(function (args) {
126
refreshCompletionKeys(args.completionKeys);
127
});
128
+ } else if (port.name == "HUD") {
129
+ port.onMessage.addListener(function(args) {
130
+ if (args.timeout && args.timeout > 0) {
131
+ HUD.showForDuration(args.message, args.timeout);
132
+ } else {
133
+ HUD.show(args.message);
134
+ }
135
+ });
136
}
137
138
0 commit comments