mirror of
https://github.com/chylex/IntelliJ-IdeaVim.git
synced 2025-05-06 12:34:03 +02:00
Fix the incorrect variable name
This commit is contained in:
parent
304562a2db
commit
1d77b0b059
src/main/java/com/maddyhome/idea/vim
@ -41,8 +41,8 @@ internal class PluginStartup : ProjectActivity/*, LightEditCompatible*/ {
|
||||
if (firstInitializationOccurred) return
|
||||
firstInitializationOccurred = true
|
||||
|
||||
if (!VimPlugin.getVimState().wasSubscibedToEAPAutomatically && ApplicationManager.getApplication().isEAP && !JoinEap.eapActive()) {
|
||||
VimPlugin.getVimState().wasSubscibedToEAPAutomatically = true
|
||||
if (!VimPlugin.getVimState().wasSubscribedToEAPAutomatically && ApplicationManager.getApplication().isEAP && !JoinEap.eapActive()) {
|
||||
VimPlugin.getVimState().wasSubscribedToEAPAutomatically = true
|
||||
UpdateSettings.getInstance().storedPluginHosts += EAP_LINK
|
||||
}
|
||||
|
||||
|
@ -18,7 +18,7 @@ import kotlin.reflect.KProperty
|
||||
internal class VimState {
|
||||
var isIdeaJoinNotified by StateProperty("idea-join")
|
||||
var isIdeaPutNotified by StateProperty("idea-put")
|
||||
var wasSubscibedToEAPAutomatically by StateProperty("was-automatically-subscribed-to-eap")
|
||||
var wasSubscribedToEAPAutomatically by StateProperty("was-automatically-subscribed-to-eap")
|
||||
|
||||
fun readData(element: Element) {
|
||||
val notifications = element.getChild("notifications")
|
||||
|
Loading…
Reference in New Issue
Block a user