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
{{ message }}
This repository has been archived by the owner on May 13, 2022. It is now read-only.
if possible user should get autocomplete suggestion in code editor like
suppose if user use navi in code editor so it should suggest navigate.
why it's required : if user want to add code in code editor itself so user should know what are the action user can use like if user type asset_ so it should suggest all action type of asert_
The text was updated successfully, but these errors were encountered:
we can use this one Autocomplete but need to use ctrl-space It will better if we can make it Realtime autocomplete suggestion.
I have found some change required in index.html in above link repo if we want to do with realtime autocomplete suggesstion without using ctrl-space
editor.on("keyup", function (cm, event) {
if (!cm.state.completionActive && /Enables keyboard navigation in autocomplete list/
event.keyCode > 64 && event.keyCode < 91){// only when a letter key is pressed
CodeMirror.commands.autocomplete(cm, null, {completeSingle: false});
}
});
but need to work on how we can use golem module all action in autocomplete suggestion
if possible user should get autocomplete suggestion in code editor like
suppose if user use navi in code editor so it should suggest navigate.
why it's required : if user want to add code in code editor itself so user should know what are the action user can use like if user type asset_ so it should suggest all action type of asert_
The text was updated successfully, but these errors were encountered: