volar-plugins icon indicating copy to clipboard operation
volar-plugins copied to clipboard

Results 23 volar-plugins issues
Sort by recently updated
recently updated
newest added

A start of a [Biome](https://biomejs.dev/) service. It unfortunately doesn't seem to quite work just yet though, some sort of WASM error...

I have gone through these service plugins, and each may create a new `LanguageService` for its own. https://github.com/volarjs/services/blob/0230a4118b885284bd2d96e34878d6225d44e288/packages/vetur/index.ts#L19 https://github.com/volarjs/services/blob/0230a4118b885284bd2d96e34878d6225d44e288/packages/html/index.ts#L9 Is there anyway to share these `LanguageService` among plugins using `context`?...

In VS Code, extensions can add custom data through the following code: ```json { "contributes": { "html": { "customData": ["./html.html-data.json"] }, "css": { "customData": ["./css.css-data.json"] } } } ``` At...

enhancement

Mentioned in language tools: https://github.com/vuejs/language-tools/issues/4111 Based on [standalone Sass language server](https://github.com/wkillerud/some-sass/tree/main/packages/language-server#readme). Would be nice to have dedicated Sass language service support. Any tips on how to get started?

Repro: https://github.com/kingyue737/volar-starter-service-v2 I've changed the config according to the docs: ```js module.exports = { services: [require("volar-service-prettyhtml").create({ printWidth: 10 })], } ``` and format `App.vue` with Vue Offical extension. Nothing happened....

Changesets replaces lerna-lite. Releases are made using the `release` workflow. The changeset configuration is based on Astro and MDX analyzer. Each package now has a `prepack` script. This is run...

Fixes https://github.com/vuejs/language-tools/issues/2425 As I understand its not possible to pass format options from the client, so why don't use defaults when options are missing? But there is another problem: since...

Refs: https://github.com/microsoft/vscode/tree/main/extensions/markdown-language-features - the `sync` function should not depend on ts project - `getAllMarkdownDocuments` should return file list that searches from the file system

enhancement

When I use https://github.com/alex8088/electron-vite to create an Electron Vue project, (pnpm create @quick-start/electron). Whenever I open electron.d.ts, I observe that volar ls has a long 100% CPU usage, during which...

## Background I recently transitioned from using Vue 2 (generation using: "**vue-cli**", and using vscode extension: "**Vetur**") in my projects to the new Vue 3. This new project was set...