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

Adjust some API names to make things more consistent and less confusing.

--HG--
branch : groups
This commit is contained in:
Kris Maglione
2011-02-06 20:18:12 -05:00
parent 83738de163
commit 2a99de96a0
4 changed files with 26 additions and 26 deletions

View File

@@ -73,10 +73,10 @@ var AutoCmdHive = Class("AutoCmdHive", {
*/
var AutoCommands = Module("autocommands", {
init: function () {
this.user = contexts.subGroup.autocmd.user;
this.user = contexts.hives.autocmd.user;
},
hives: Group.SubGroup("autocmd", AutoCmdHive),
hives: Group.Hive("autocmd", AutoCmdHive),
get activeHives() contexts.activeGroups("autocmd").map(function (h) h.autocmd).filter(function (h) h._store.length),