I'm using PhpStorm 2016.1. I have these files and the situation is described below:
@mycss
.style {color : red}
@base.html.twig
[...]
<link rel="stylesheet" href="/vendor/mycss.css" />
<!--HERE AUTOCOMPLETE OF style WORKS-->
{%block test%}{%endblock%}
@page.html.twig
{% extends "MyController::base.html.twig" %}
<!--HERE AUTOCOMPLETE OF style NOT WORKS-->
{%block test%}{%endblock%}
How to fix that in order to have autocomplete on all files?
EDIT
It's not a TWIG problem. I don't create new styles in children templates.
I use symlinks (es. /main.css -> /vendor/css/main.css) and that should cause a problem (don't know why). If I for example write small- (foundation grid) + ctrl + space (ask for code completation) the IDE seems to go in some kind of loop, the CPU go to 100% and it keep "loading" while it throw a memory error...
