Ace API Reference
    Preparing search index...

    Module src/ext/language_tools

    Provides autocompletion, snippets, and language intelligence features for the Ace code editor. This extension integrates multiple completion providers including keyword completion, snippet expansion, and text-based completion to enhance the coding experience with contextual suggestions and automated code generation.

    Configuration Options:

    • enableBasicAutocompletion: Enable/disable basic completion functionality
    • enableLiveAutocompletion: Enable/disable real-time completion suggestions
    • enableSnippets: Enable/disable snippet expansion with Tab key
    • liveAutocompletionDelay: Delay before showing live completion popup
    • liveAutocompletionThreshold: Minimum prefix length to trigger completion

    Usage:

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

    Variables

    keyWordCompleter
    snippetCompleter

    Functions

    addCompleter
    setCompleters