mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-05 05:44:17 +01:00
Add missing semicolons.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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();
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user