diff options
author | Doug Kearns <dougkearns@gmail.com> | 2009-06-02 16:56:28 +1000 |
---|---|---|
committer | Doug Kearns <dougkearns@gmail.com> | 2009-06-02 16:59:24 +1000 |
commit | 6d7b94daa6e940fd1f95ead45b9a247670d22d54 (patch) | |
tree | f39522d54dc6a307e2d1cca6ac30a198d02f93b9 /vimperator | |
parent | 95dffaf95a3653e55a34e090b800f9a79e9a8fd5 (diff) | |
download | pentadactyl-6d7b94daa6e940fd1f95ead45b9a247670d22d54.tar.gz |
Add missing semicolons.
Diffstat (limited to 'vimperator')
-rw-r--r-- | vimperator/content/bookmarks.js | 2 | ||||
-rw-r--r-- | vimperator/content/config.js | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/vimperator/content/bookmarks.js b/vimperator/content/bookmarks.js index a66b3a06..b1998d32 100644 --- a/vimperator/content/bookmarks.js +++ b/vimperator/content/bookmarks.js @@ -259,7 +259,7 @@ function Bookmarks() //{{{ { completer: function completer(context) { - completion.search(context, true) + completion.search(context, true); context.completions = [["", "Don't perform searches by default"]].concat(context.completions); }, validator: Option.validateCompleter diff --git a/vimperator/content/config.js b/vimperator/content/config.js index 678f6993..d8016b51 100644 --- a/vimperator/content/config.js +++ b/vimperator/content/config.js @@ -131,13 +131,13 @@ const config = { //{{{ "<Return>": modes.NORMAL | modes.INSERT, "<Space>": modes.NORMAL | modes.INSERT, "<Up>": modes.NORMAL | modes.INSERT, - "<Down>": modes.NORMAL | modes.INSERT, - } + "<Down>": modes.NORMAL | modes.INSERT + }; }, scripts: [ "bookmarks.js", - "tabs.js", + "tabs.js" ], init: function () @@ -369,8 +369,8 @@ const config = { //{{{ "Redraw the screen", function () { - let wu = window.QueryInterface(Ci.nsIInterfaceRequestor). - getInterface(Ci.nsIDOMWindowUtils); + let wu = window.QueryInterface(Ci.nsIInterfaceRequestor) + .getInterface(Ci.nsIDOMWindowUtils); wu.redraw(); modes.show(); }, |