Woodrow Shigeru

Results 12 comments of Woodrow Shigeru

Not sure if just a coincidence but … after over an hour of `dlite start` and `dlite stop`, I just deactivated my WLAN and ran `dlite start` again – it...

If the `update()` method turns out to be useless, consider reinitializing the element. jQuery example: ``` var $textarea = $('textarea.js-autosize'); // autosize.update($textarea); autosize( $textarea.removeAttr('style') ); ``` *EDIT:* As an addendum...

I too would love to have a "search without unfolding" feature or behavior (preferably, a checkbox). After having spent a hot minute of meticulous custom folding, it can be very...

The issue title does not match the description imo. I too would love to have a "search without unfolding" feature or behavior (maybe a checkbox?). After having spent a hot...

I see, you are talking about the action of "step 3" being optimizable. I read that as "This is how it currently is and it's annoying." (And then I didn't...

Code for reproducing: **main.scss**: ``` @import "header"; ``` **_header.scss**: ``` @use 'config'; body > header { color: config.$config-color; } ``` **_config.scss**: ``` $config-color: green !default; ``` *Results in*: ``` $...

I *am* compiling with dart-sass 1.15.2

> Code rarely starts with anything signifying the name of a file, instead having shebangs, imports, includes, {, /*, etc. @BenjaminSchaaf Even so, you could distinguish your files better if...

I'm also running into this issue with the `:export` keyword. While the actual export (and JS-side import) works, this warning is also thrown only because of this export block. ```scss...

I have an update and solution for my use case. Not sure anymore if this relates to or can help with the discussed topic. I understand that the original asker...