Completions don't work at the end of a @ section, or with unmatched braces:
@(message: String, user: User)
@main("Welcome to Play 2.1") {
<p>My name is: @{user.}</p>
<p>@user.</p> // no completion at all
@user. // Scope completion instead of member completion
There are several causes:
- the partitioner makes an off-by-one mistake (adding a space before the closing tag fixes it)
- the template compiler throws exceptions for syntax errors
- the logic for selecting scope-completion over member completion misfires
Completions don't work at the end of a
@section, or with unmatched braces:There are several causes: