You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The create methods in TextMateLanguage often have a parameter called autoCompleteEnabled. However, the value doesn't change autoCompleteEnabled, but rather createIdentifiers. The parameter name is incorrect.
The member variable createIdentifiers is final, and there's no setter method to modify it later. Is this not possible? Is it necessary to create a new TextMateLanguage object to change this?
The
createmethods inTextMateLanguageoften have a parameter calledautoCompleteEnabled. However, the value doesn't changeautoCompleteEnabled, but rathercreateIdentifiers. The parameter name is incorrect.The member variable
createIdentifiersis final, and there's no setter method to modify it later. Is this not possible? Is it necessary to create a newTextMateLanguageobject to change this?