## Problem There is not autocomplete for callbacks for the behaviours of the current module. ## Solution When the cursor is in a situation like `def |` or `defp |`, the completions should show callback names as candidates. So for a GenServer, it would autocomplete `handle_call`, `init`, `handle_cast`, etc.
Problem
There is not autocomplete for callbacks for the behaviours of the current module.
Solution
When the cursor is in a situation like
def |ordefp |, the completions should show callback names as candidates.So for a GenServer, it would autocomplete
handle_call,init,handle_cast, etc.