Docs / Extensions / Interfaces
< Back
Each extension must implement a ed_ext_init()
callout,
executed at application loading.
Optionally, feature callouts ed_ext_xxx()
can be provided,
with “xxx” the name of the feature.
Currently supported features:
ed_ext_get_commands
: query commands to be added to the command-bar or menued_ext_get_completion
: query additional source completion providersed_ext_notif_wbench_opened
: called when opening a new windowed_ext_notif_wbench_closed
: called when closing a windowed_ext_notif_project_loaded
: called when a project is loadeded_ext_notif_notebook_added
: called when a notebook (i.e. tabs group) is addeded_ext_notif_doc_added
: called when a document tab is addeded_ext_notif_doc_loaded
: called when a document loaded its content from disked_ext_notif_doc_symbols
: called when a document reloaded its symbolsed_ext_notif_doc_save
: called when a document is going to be saved to disked_ext_notif_doc_closed
: called when a document tab is closed
< Back