Providing autocompletion suggestions - lmparppei/BeatPlugins GitHub Wiki

Beat has character cue and scene heading autocompletion. If you'd like to provide your own suggestions for these lists, you can tap into the methods that gather autocompletion data from the document.

Beat.onCharacterAutocompletion(function () {
   return ["NAME", "ANOTHER NAME"]
})

Beat.onSceneHeadingAutocompletion(function () {
   return ["INT. EXAMPLE", "EXT. ANOTHER EXAMPLE"]
})

For now, you cannot override the existing autocompletion, only provide additional suggestions.