Autocomplete suggest layoutRootPath and partialRootPath without being a FLUIDTEMPLATE
Since the issue #29 (closed) is resolved we can use FLUIDTEMPLATE also with autocomplete. But it seems that we have a little issue in the XML definition for the FLUIDTEMPLATE related options layoutRootPath and partialRootPath.
The auto complete function suggest partialRootPath and layoutRootPath for page.10 when you did not define page.10 as type FLUIDTEMPLATE.
This seems to be a bug. The options are not available when you don't have the type FLUIDTEMPLATE.
The right notation can be something like that:
page = PAGE
page {
10 = FLUIDTEMPLATE
10 {
partialRootPath = 'Foo/Bar/Partials'
layoutRootPath = 'Foo/Bar/Layout'
}
}