1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-24 07:32:27 +01:00

Add AUTOCOMPLETE mode.

This commit is contained in:
Kris Maglione
2011-02-17 10:11:04 -05:00
parent c5da372a3f
commit 7b1c40cf5f
2 changed files with 11 additions and 1 deletions

View File

@@ -118,6 +118,11 @@ var Modes = Module("modes", {
input: true,
ownsFocus: true
});
this.addMode("AUTOCOMPLETE", {
description: "Active when an input autocomplete pop-up is active",
display: function () "INSERT (autocomplete)",
bases: [this.INSERT]
});
this.addMode("EMBED", {
input: true,