mirror of
https://github.com/chylex/IntelliJ-IdeaVim.git
synced 2025-05-06 12:34:03 +02:00
Added process group
This commit is contained in:
parent
dd412e61c6
commit
9f8e0ad27a
@ -54,6 +54,7 @@ public class CommandGroups
|
||||
register = new RegisterGroup();
|
||||
file = new FileGroup();
|
||||
search = new SearchGroup();
|
||||
process = new ProcessGroup();
|
||||
}
|
||||
|
||||
/**
|
||||
@ -119,6 +120,15 @@ public class CommandGroups
|
||||
return search;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the process group
|
||||
* @return The process group
|
||||
*/
|
||||
public ProcessGroup getProcess()
|
||||
{
|
||||
return process;
|
||||
}
|
||||
|
||||
/**
|
||||
* Tells each group to save its data.
|
||||
* @param element The plugin's root element
|
||||
@ -132,6 +142,7 @@ public class CommandGroups
|
||||
register.saveData(element);
|
||||
file.saveData(element);
|
||||
search.saveData(element);
|
||||
process.saveData(element);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -148,6 +159,7 @@ public class CommandGroups
|
||||
register.readData(element);
|
||||
file.readData(element);
|
||||
search.readData(element);
|
||||
process.readData(element);
|
||||
}
|
||||
|
||||
private static CommandGroups instance;
|
||||
@ -158,6 +170,7 @@ public class CommandGroups
|
||||
private RegisterGroup register;
|
||||
private FileGroup file;
|
||||
private SearchGroup search;
|
||||
private ProcessGroup process;
|
||||
|
||||
private static Logger logger = Logger.getInstance(CommandGroups.class.getName());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user