WebMechanic

Results 120 comments of WebMechanic

You probably misunderstood the whole scope and purpose of this package? What you probably want is sth. in the realm of Bulma, Basscs or even Foundation or Bootstrap. They give...

this looks like an [attribute selector](https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute_selectors) to me, although there is no attribute "primary" for the HTML button element. Having that for data and aria attributes would be very useful...

if you pick "Add Config (workspace)" from the Run and Debug dropdown it should open the Command Palette where you can choose the debugger target (those being enabled). ![image](https://github.com/firefox-devtools/vscode-firefox-debug/assets/638340/9af14d56-c16f-4907-8c05-a642205f513f) Pick...

FYI: if you use SVGs to turn them into CSS background images (data uri) the `xmlns` is required or it won't render. `background-image: url('data:image/svg+xml;utf8,)` I also removed several of these...

I second and third that. **TL;DR** it's the standard file extension for TypeScript definition files according to Microsoft documentation and tools. JetBrains IDEs also treat `.d.ts` as TypeScript definition files...

That's "unfortunate" 'cos it happens to me on any `.cmd` file. Which got me thinking while writing this ... - It **works** if the file name suffix is `.bat` That's...

addendum: if I creat e .bat file and rename it to .cmd (Shift+F6) it still works. It only breaks if the file suffix was .cmd in the first place.

I just dumped the log that poped up when the editor broke. Not sure if something else happend at the same moment or if I missed an entry. To make...

There you go; it stops after the "... 43 more" though: ``` com.intellij.openapi.editor.ex.util.LexerEditorHighlighter$InvalidStateException: com.intellij.openapi.editor.ex.util.LexerEditorHighlighter(org.intellij.lang.batch.lexer.BatchHighlighterLexer): Error updating after DocumentEventImpl[myOffset=123, myOldLength=1, myNewLength=0, myOldString=' ', myNewString='']. at com.intellij.openapi.editor.ex.util.LexerEditorHighlighter.documentChanged(LexerEditorHighlighter.java:337) at com.intellij.openapi.editor.impl.DocumentImpl.changedUpdate(DocumentImpl.java:899) at com.intellij.openapi.editor.impl.DocumentImpl.updateText(DocumentImpl.java:803) at...

Here's another goodie. Consider this content ```cmd @echo off REM a remarkable remark REM with two lines echo %~0 goto :EOF ``` If I **select** any of the `REM` and...