Clément P

Results 71 comments of Clément P

My suggestion (using `▁▂▃▄▅▆▇█` chars) ![Screenshot_20221025_161603](https://user-images.githubusercontent.com/347244/197798274-3f150393-8b50-40b2-b5b7-bb86eb75633f.png)

https://gitlab.com/gitlab-org/gitlab-foss/-/issues/33760

so which one should I use?

finally this bug (and others) only come with the flatpak version. @Mailaender it's a known bug?

only supported by chromium based browsers ?

This feature seems to be abandoned. From https://drafts.fxtf.org/filter-effects/#changes: > The following significant changes were made since the [26 November 2013 Working Draft](https://www.w3.org/TR/2013/WD-filter-effects-1-20131126/). > > Removed Custom Filters. Spec: https://drafts.fxtf.org/custom/

I suggest this syntax: ```bash bun build ./src/foo.ts --external='*,!./*,!../*' ``` (external = all (`*`) except local files (`./*` and `../*`)

https://github.com/emmetio/emmet/pull/694

you can replace it in text before read it: ```js var translation = { '+':'plus', '-': 'minus', '*': 'times', '/': 'divide' } var myTranslatedText = mytext.replace(/[-+/*]/g, (a) => ' '...