YCM Jason
YCM Jason
I really just wanna quickly compress my files for once. Please make a bin so that I could just `npx` it.
Maybe we can make a CLI so that we can list out emojis / search through emojis etc.. E.g. ``` > npx emoji find tada ... > npx emoji find...
Self-closing tags like these: `` will be treated as open tags and indent the lines following it. I have added to the regex to ignore these tags.
In Vue/Angular, many developers prefer using `` to refer to their components instead of ``. Although `` is not a custom element according to the html5 specs, I think it...
Amazing plugin. Very useful! The `#` on UK keyboard is typed with `^3`. And this will not work in wasavi.
- `@testing-library/jest-dom` version:5.11.10 - `node` version: 14.15.4 - `npm` (or `yarn`) version: - ### Relevant code or config: ```js expect(document.createComment()).toBeEmptyDOMElement() ``` ### What you did: Trying to test a component...
Although i18n is not an official package, it is quite a popular package in the Vue ecosystem. It might be worth to add support for ``. https://kazupon.github.io/vue-i18n/guide/sfc.html
### Describe the bug when `import.meta.env` is used in a ternary operator, following an array spread, vite can't seem to pick up `import.meta.env` is being used, and it becomes undefined....
Thanks for the amazing app. I have a suggestion to add an option to allow "persistent hint mode". Currently, it goes back to "normal mode" after selecting a hint. But...
I bumped in to a situation where I would need to invalidate some computed value. I could do this currently using watch ```ts const x = computed(() => ...) watch(()...