mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-03-06 07:15:46 +01:00
Bah.
This commit is contained in:
@@ -672,7 +672,6 @@ var Buffer = Module("buffer", {
|
||||
|
||||
persist.progressListener = update(Object.create(downloadListener), {
|
||||
onStateChange: util.wrapCallback(function onStateChange(progress, request, flags, status) {
|
||||
util.dump(status, [k for ([k, v] in iter(Ci.nsIWebProgressListener)) if (v & flags)].join("|"))
|
||||
if (callback && (flags & Ci.nsIWebProgressListener.STATE_STOP) && status == 0)
|
||||
dactyl.trapErrors(callback, self, uri, file, progress, request, flags, status);
|
||||
|
||||
|
||||
@@ -658,17 +658,10 @@ var Editor = Module("editor", {
|
||||
mappings.add([modes.INPUT, modes.CARET],
|
||||
["<*-CR>", "<*-BS>", "<*-Del>", "<*-Left>", "<*-Right>", "<*-Up>", "<*-Down>",
|
||||
"<*-Home>", "<*-End>", "<*-PageUp>", "<*-PageDown>",
|
||||
"<M-c>", "<M-v>"],
|
||||
"<M-c>", "<M-v>", "<*-Tab>"],
|
||||
"Handled by " + config.host,
|
||||
function () Events.PASS_THROUGH);
|
||||
|
||||
mappings.add([modes.INSERT, modes.NORMAL],
|
||||
["<Tab>"], "Select the next element in the tab sequence",
|
||||
function () Events.PASS);
|
||||
mappings.add([modes.INSERT, modes.NORMAL],
|
||||
["<S-Tab>"], "Select the previous element in the tab sequence",
|
||||
function () Events.PASS);
|
||||
|
||||
mappings.add([modes.INSERT],
|
||||
["<Space>", "<Return>"], "Expand Insert mode abbreviation",
|
||||
function () {
|
||||
|
||||
Reference in New Issue
Block a user