1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-07-30 09:59:08 +02:00
This commit is contained in:
Andrey Vlasovskikh 2014-03-22 16:05:30 +04:00
parent ddd28c9a44
commit d87a241e34

View File

@ -479,7 +479,7 @@ public class VimPlugin implements ApplicationComponent, PersistentStateComponent
EditorData.initializeEditor(editor);
DocumentManager.getInstance().addListeners(editor.getDocument());
final Set<KeyStroke> requiredKeys = KeyParser.getInstance().getRequiredKeys();
getShorctuKeyAction().registerCustomShortcutSet(toShortcutSet(requiredKeys), editor.getComponent());
getShortcutKeyAction().registerCustomShortcutSet(toShortcutSet(requiredKeys), editor.getComponent());
if (VimPlugin.isEnabled()) {
// Turn on insert mode if editor doesn't have any file
@ -497,7 +497,7 @@ public class VimPlugin implements ApplicationComponent, PersistentStateComponent
public void editorReleased(@NotNull EditorFactoryEvent event) {
final Editor editor = event.getEditor();
EditorData.uninitializeEditor(editor);
getShorctuKeyAction().unregisterCustomShortcutSet(editor.getComponent());
getShortcutKeyAction().unregisterCustomShortcutSet(editor.getComponent());
editor.getSettings().setAnimatedScrolling(isAnimatedScrolling);
editor.getSettings().setRefrainFromScrolling(isRefrainFromScrolling);
DocumentManager.getInstance().removeListeners(editor.getDocument());
@ -526,7 +526,7 @@ public class VimPlugin implements ApplicationComponent, PersistentStateComponent
}
@NotNull
private AnAction getShorctuKeyAction() {
private AnAction getShortcutKeyAction() {
return ActionManagerEx.getInstanceEx().getAction("VimShortcutKeyAction");
}