1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 22:47:59 +01:00

Fix typos. Ugh.

This commit is contained in:
Kris Maglione
2011-02-17 22:26:09 -05:00
parent a6e245b0bf
commit 8fc61fb863

View File

@@ -846,20 +846,20 @@ var Editor = Module("editor", {
bind(["<Esc>"], "Return to INSERT mode", bind(["<Esc>"], "Return to INSERT mode",
function () Events.PASS); function () Events.PASS);
bind(["<Up>"], "Select the next autocompletion result",
function () Events.PASS);
bind(["<Down>"], "Select the next autocompletion result",
function () Events.PASS);
bind(["<C-[>"], "Return to INSERT mode", bind(["<C-[>"], "Return to INSERT mode",
function () { events.feedkeys("<Esc>", { skipmap: true }); }); function () { events.feedkeys("<Esc>", { skipmap: true }); });
bind(["<C-n>"], "Select the next autocompletion result", bind(["<Up>"], "Select the previous autocomplete result",
function () { events.feedkeys("<Down>", { skipmap: true }); }); function () Events.PASS);
bind(["<C-p>"], "Select the next previous result", bind(["<C-p>"], "Select the previous autocomplete result",
function () { events.feedkeys("<Up>", { skipmap: true }); }); function () { events.feedkeys("<Up>", { skipmap: true }); });
bind(["<Down>"], "Select the next autocomplete result",
function () Events.PASS);
bind(["<C-n>"], "Select the next autocomplete result",
function () { events.feedkeys("<Down>", { skipmap: true }); });
}, },
options: function () { options: function () {