1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-14 04:55:46 +01:00

Add go+=c and move the mode message to the left of the status-line. CSS needs some work.

This commit is contained in:
Kris Maglione
2010-10-12 01:23:53 -04:00
parent ad458f4be1
commit 3d43582f0d
8 changed files with 28 additions and 14 deletions

View File

@@ -15,9 +15,7 @@ const Abbreviation = Class("Abbreviation", {
this.rhs = rhs;
},
equals: function (other) {
return this.lhs == other.lhs && this.rhs == other.rhs;
},
equals: function (other) this.lhs == other.lhs && this.rhs == other.rhs,
expand: function (editor) String(callable(this.rhs) ? this.rhs(editor) : this.rhs),