1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-22 02:35:47 +01:00

Enable v_y in caret mode. Closes issue #685.

This commit is contained in:
Kris Maglione
2011-10-09 05:34:18 -04:00
parent 0307817e4d
commit cd9605af3b
3 changed files with 18 additions and 10 deletions

View File

@@ -422,7 +422,7 @@ var Dactyl = Module("dactyl", XPCOM(Ci.nsISupportsWeakReference, ModuleBase), {
echoerr: function echoerr(str, flags) {
flags |= commandline.APPEND_TO_MESSAGES;
if (isinstance(str, ["DOMException", "Error", "Exception"])
if (isinstance(str, ["DOMException", "Error", "Exception", ErrorBase])
|| isinstance(str, ["XPCWrappedNative_NoHelper"]) && /^\[Exception/.test(str))
dactyl.reportError(str);