admin管理员组

文章数量:1221020

I would like to know if it's possible to enable auto-completion while user is typing in editor ace.js. At the moment in my project auto-completion is enabled when user type: ctrl + space . Then, is possible adding some keywords in the auto-completion list?

Thanks

I would like to know if it's possible to enable auto-completion while user is typing in editor ace.js. At the moment in my project auto-completion is enabled when user type: ctrl + space . Then, is possible adding some keywords in the auto-completion list?

Thanks

Share Improve this question asked Nov 15, 2013 at 11:31 Edge7Edge7 6811 gold badge16 silver badges35 bronze badges
Add a comment  | 

2 Answers 2

Reset to default 17

For triggering autocomplete use

editor.commands.on("afterExec", function(e){
     if (e.command.name == "insertstring"&&/^[\w.]$/.test(e.args)) {
         editor.execCommand("startAutocomplete")
     }
})

For addidng some keywords you can either add another completer to the editor or override getCompletions method on the mode.

It's already built in! See the options that I chose under editor.setOptions:

    var langTools = ace.require("ace/ext/language_tools");
    var editor = ace.edit("editor");

    editor.setTheme("ace/theme/monokai");
    editor.getSession().setMode("ace/mode/yaml");

    editor.setOptions({
        enableBasicAutocompletion: true,
        enableSnippets: true,
        enableLiveAutocompletion: true
    });

本文标签: javascriptautocompletion in acejs editorStack Overflow