@yaegassy/coc-astro
yaegassyAstro extension for coc.nvim
Published Package Summary
coc-astro
fork from a astro-vscode
Astro extension for coc.nvim
Install
CocInstall:
:CocInstall @yaegassy/coc-astro
scoped packages
e.g. vim-plug:
Plug 'yaegassy/coc-astro', {'do': 'yarn install --frozen-lockfile'}
Note
Filetype related
The "filetype" must be astro for this extension to work.
Install "astro" related plugin. (e.g. vim-astro or nvim-treesitter).
How to set up TypeScript in your Astro project for coc.nvim
-
You need coc-tsserver. Please install it if you haven't already.
-
coc-astrohas a setting to use@astrojs/ts-pluginin the extension as well asastro-vscode, so you can use typescript as it is.
[RECOMMENDED] Additional installation of "watchman"
In the @astrojs/language-server used by coc-astro, it utilizes the workspace/didChangeWatchedFiles notification to watch files within the project.
In coc.nvim, it is recommended to install watchman in order to utilize this feature.
If you have difficulty installing watchman, you can use coc-astro without watchman, but you may not be able to immediately use IntelliSense with the newly added files.
In this case, please execute the command to restart the language server.
:CocRestart
Dealing with text corruption when determining completion item
coc-astro provides a setting called astro.disableResolveCompletionItem. Set this setting to true in coc-settings.json. The default is false.
Please note that if this setting is set to true, feature such as "auto-import" upon completion item determination will not work.
coc-settings.json:
{
"astro.disableResolveCompletionItem": true
}
- Related issues in upstream
Thanks
License
MIT
This extension is built with create-coc-extension
- Astro extension for coc.nvim
- onLanguage:astro
Want to build, test, or contribute to coc.nvim extensions? Explore our official SDK and testing toolkits.
Open Developer GuideVersion History
This published npm package does not include a history.md or changelog.md file. Browse its npm versions or repository releases for available release information.
Contributed Commands
All contributes.commands entries from the published package manifest for @yaegassy/coc-astro@0.9.2.
| Command (:CocCommand) | Description |
|---|---|
| astro.findFileReferences | Astro: Find File References |
| astro.reloadProject | Astro: Reload Project |
Configuration Schema
All contributes.configuration entries from the published package manifest, including each raw property schema for coc-settings.json.
Raw JSON Schema
{
"type": "boolean",
"default": true,
"description": "Enable coc-astro extension."
}Raw JSON Schema
{
"enum": [
"off",
"messages",
"verbose"
],
"type": "string",
"scope": "window",
"default": "off",
"description": "Traces the communication between VS Code and the language server."
}Raw JSON Schema
{
"type": "boolean",
"default": false,
"description": "Use workspace (project) detected tsLibs in astro. if false, use coc-astro's built-in tsLibs."
}Raw JSON Schema
{
"type": "string",
"title": "Language Server: Path",
"description": "Path to the language server executable. You won't need this in most cases, set this only when needing a specific version of the language server"
}Raw JSON Schema
{
"type": "string",
"scope": "application",
"title": "Language Server: Runtime",
"description": "Path to the node executable used to execute the language server. You won't need this in most cases"
}Raw JSON Schema
{
"type": "boolean",
"default": false,
"description": "Disable completionItem/resolve feature."
}