mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 03:17:58 +01:00
Add missing semicolons, fix whitespace and normalise Vim modelines.
This commit is contained in:
@@ -237,7 +237,7 @@ var Tabs = Module("tabs", {
|
||||
return this._groups;
|
||||
|
||||
if (func)
|
||||
func = bind(function (func) { func(this._groups) }, this, func);
|
||||
func = bind(function (func) { func(this._groups); }, this, func);
|
||||
|
||||
if (window.TabView && window.TabView._initFrame)
|
||||
window.TabView._initFrame(func);
|
||||
@@ -335,7 +335,6 @@ var Tabs = Module("tabs", {
|
||||
completion.listCompleter("buffer", filter);
|
||||
},
|
||||
|
||||
|
||||
/**
|
||||
* Return an iterator of tabs matching the given filter. If no
|
||||
* *filter* or *count* is provided, returns the currently selected
|
||||
@@ -1312,4 +1311,4 @@ var Tabs = Module("tabs", {
|
||||
}
|
||||
});
|
||||
|
||||
// vim: set fdm=marker sw=4 ts=4 et:
|
||||
// vim: set fdm=marker sw=4 sts=4 ts=8 et:
|
||||
|
||||
Reference in New Issue
Block a user