SublimeText / Sass

Sass and SCSS syntax for Sublime Text
https://packagecontrol.io/packages/Sass
MIT License
50 stars 8 forks source link

Trying to insert inline comment creates outer block comment #95

Closed rchl closed 5 months ago

rchl commented 2 years ago

Trying to insert inline comment at | with cmd+/ comments out the parent selector with a block comment.

#a {
    |
    #b {
        display: none;
    }
}

=>

/* #a {

    #b {
        display: none;
    }
} */

I wonder if it's possible to fix without loosing the functionality to easily comment out whole selectors as it's quite useful.

braver commented 5 months ago

closed via #96