add additional remapping

add additional remapping
This commit is contained in:
Kyle
2019-11-24 23:56:25 +00:00
committed by GitHub
parent d97dbc3beb
commit 9f6bf0281f

View File

@@ -123,6 +123,12 @@ public class KeyRemappingPlugin extends Plugin
private ModifierlessKeybind f12;
@Getter(AccessLevel.PACKAGE)
private ModifierlessKeybind esc;
@Getter(AccessLevel.PACKAGE)
private ModifierlessKeybind ctrl;
@Getter(AccessLevel.PACKAGE)
private ModifierlessKeybind alt;
@Getter(AccessLevel.PACKAGE)
private ModifierlessKeybind shift;
@Override
protected void startUp() throws Exception
@@ -315,5 +321,8 @@ public class KeyRemappingPlugin extends Plugin
this.f11 = config.f11();
this.f12 = config.f12();
this.esc = config.esc();
this.ctrl = config.ctrl();
this.alt = config.alt();
this.shift = config.shift();
}
}