Content assist (autocomplete) can be triggered explicitly if you press Ctrl+Space in any code context.

Some of the contexts when content assist is triggered automatically as you type are:

  • when you type a dot (.) for accessing a struct member (field, method etc) as in bfm.do_write()

../../_images/edt_concepts_autocomplete_1.png
  • when you type a colon (:) in a field declaration as in smp : signal map

../../_images/edt_concepts_autocomplete_3.png
  • when you type a compare (==) in an expression as in if (mode ==…)

../../_images/edt_concepts_autocomplete_2.png

Proposals are presented in a list for you to choose from. Moving through proposals you can quickly see the related documentation.

Press Enter or Click to select a proposal or Esc to cancel the assist.