How to make autocomplete scss in scss files for bem?

Hi. 
I have this php code, but may be and html. 

<div class="partners">
    <div class="container">
        <h2 class="partners__title title"><?php echo $title; ?></h2>
        <div class="partners__text">
            <p><?php echo $text; ?></p>
        </div>
        <div class="partners__wrap">
            <?php foreach ($items as $item): ?>
                <div class="partners__item">
                    <img src="<?php echo $item; ?>" alt="">
                </div>
            <?php endforeach; ?>
        </div>
    </div>
</div>


And scss file, where don't have autocomplete.

.partners {
  &__
}
1
4 comments

would you expect the selector to be completed when editing .scss file?

0

I expect 4 selectors in autocomplete popup

.partners {
  &__title
&__text
&__wrap
&__item

}

 

Selectors form html code.

0

I've filed a feature request for this, https://youtrack.jetbrains.com/issue/WEB-55349; please vote for it to be notified on any progress

0

Please sign in to leave a comment.