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

About AutoCompletion #181

Open
zhouyusd opened this issue Oct 27, 2020 · 0 comments
Open

About AutoCompletion #181

zhouyusd opened this issue Oct 27, 2020 · 0 comments

Comments

@zhouyusd
Copy link

var langTools = window.ace.acequire("ace/ext/language_tools");
var flowCompleter = {
      getCompletions: function (editor, session, pos, prefix, callback) {
            
          callback(null, [
              {
                  caption: 'include',
                  meta: 'keyword',
                  value: 'include',
               }
           ])
       }
}
langTools.addCompleter(flowCompleter);

I added some keywords
I want to distinguish between languages. What should I do

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

No branches or pull requests

1 participant