As explained in the Schemes help page, you can define new Key Schemes through a custom plugin:
you can define a new type of scheme inside the org.eclipse.ui.bindings definition. The workbench markup that defines the default and emacs key configurations are shown below:
<scheme
name="%keyConfiguration.default.name"
description="%keyConfiguration.default.description"
id="org.eclipse.ui.defaultAcceleratorConfiguration">
</scheme>
<scheme
name="%keyConfiguration.emacs.name"
parentId="org.eclipse.ui.defaultAcceleratorConfiguration"
description="%keyConfiguration.emacs.description"
id="org.eclipse.ui.emacsAcceleratorConfiguration">
</scheme>
As illustrated by the Wizard Help Page, you can export only the key bindings preferences.

And you will be able to import it back through File/Import.
As for the list of shortcuts available depending on your current context:
Ctrl+Shift+L: you can check if your modifications apply.