Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

_ autocomplete #79

Open
kirilknysh opened this issue Aug 15, 2017 · 0 comments
Open

_ autocomplete #79

kirilknysh opened this issue Aug 15, 2017 · 0 comments

Comments

@kirilknysh
Copy link
Member

kirilknysh commented Aug 15, 2017

myCodeMirror.on("keyup", function (cm, event) {
if (instance.state.completionActive) {
        return;
    }
    var cur = instance.getCursor();
    var token = instance.getTokenAt(cur);
    var string = '';
    if (token.string.match(/^[.`\w@]\w*$/)) {
        string = token.string;
    }
    if (string.length > 0) {
        CodeMirror.commands.autocomplete(instance);
    }
    });

grab lodash API method list and implement hint function.

Useful links:
https://stackoverflow.com/questions/26174164/auto-complete-with-codemirrror
https://stackoverflow.com/questions/13744176/codemirror-autocomplete-after-any-keyup
https://codemirror.net/demo/complete.html
https://github.com/codemirror/CodeMirror/blob/master/demo/complete.html

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant