{"id":13600646,"url":"https://github.com/iamcco/coc-angular","last_synced_at":"2025-04-06T10:11:52.281Z","repository":{"id":34401366,"uuid":"178374100","full_name":"iamcco/coc-angular","owner":"iamcco","description":"Angular Language Service coc extension for (neo)vim","archived":false,"fork":false,"pushed_at":"2024-08-30T23:19:46.000Z","size":2665,"stargazers_count":146,"open_issues_count":14,"forks_count":19,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-03-30T09:09:23.710Z","etag":null,"topics":["angular","autocomplete","coc","lsp","neovim","vim"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/iamcco.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"custom":"https://github.com/iamcco/markdown-preview.nvim#buy-me-a-coffee-%EF%B8%8F"}},"created_at":"2019-03-29T09:24:39.000Z","updated_at":"2025-02-18T15:27:59.000Z","dependencies_parsed_at":"2023-11-11T03:29:33.447Z","dependency_job_id":"86a1ecca-6a00-482c-a3bf-03deb73b1ab4","html_url":"https://github.com/iamcco/coc-angular","commit_stats":{"total_commits":100,"total_committers":6,"mean_commits":"16.666666666666668","dds":"0.21999999999999997","last_synced_commit":"2c39ac6c5c2474cf68b7ae13aa9b5e8fbe04f0e0"},"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iamcco%2Fcoc-angular","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iamcco%2Fcoc-angular/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iamcco%2Fcoc-angular/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iamcco%2Fcoc-angular/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iamcco","download_url":"https://codeload.github.com/iamcco/coc-angular/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247464222,"owners_count":20942970,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["angular","autocomplete","coc","lsp","neovim","vim"],"created_at":"2024-08-01T18:00:45.710Z","updated_at":"2025-04-06T10:11:52.263Z","avatar_url":"https://github.com/iamcco.png","language":"TypeScript","readme":"# Angular Language Service\n\n\u003e fork from [angular/vscode-ng-language-service](https://github.com/angular/vscode-ng-language-service) v17.0.2\n\u003e [commit](https://github.com/angular/vscode-ng-language-service/commit/487c13a886fa1788a207874767b8d4ffed68272a)\n\nAn angular language service coc extension for (neo)vim 💖\n\n**Note:** only version \u003c= 13.3.6 support view-engine\n\n## Install\n\n``` vim\n:CocInstall coc-angular\n```\n\n![image](https://user-images.githubusercontent.com/5492542/55223095-6826b180-5248-11e9-8bca-f0528c456850.png)\n\n## Using\n\nThis extension provides a rich editing experience for Angular templates, both inline\nand external templates including:\n\n* Completions lists\n* AOT Diagnostic messages\n* Quick info\n* Go to definition\n\n**Note:** This extension does not support syntax highlight for external or inline templates.\n\n### Commands\n\n- `angular.restartNgServer` Restart Angular Language server\n- `angular.openLogFile` Open Angular Server log\n- `angular.getTemplateTcb` View Template Typecheck Block\n- `angular.goToComponentWithTemplateFile` go to component\n- `angular.goToTemplateForComponent` go to templates\n\n### Configuration\n\n- `angular.trace.server` enable angular language server trace log\n- `angular.log` Enables logging of the Angular server to a file. This log can be used to diagnose Angular Server issues. The log may contain file paths, source code, and other potentially sensitive information from your project.\n- `angular.suggest.includeAutomaticOptionalChainCompletions` Enable/disable showing completions on potentially undefined values that insert an optional chain call. Requires TS 3.7+ and strict null checks to be enabled.\n- `angular.suggest.includeCompletionsWithSnippetText` Enable/disable snippet completions from Angular language server. Requires using TypeScript 4.3+ in the workspace and the `legacy View Engine` option to be disabled.\n\n## Configuring compiler options for the Angular Language Service\n\nThe Angular Language Service uses the same set of options that are used to compile the application.\nTo get the most complete information in the editor, set the `strictTemplates` option in `tsconfig.json`,\nas shown in the following example:\n\n```\n\"angularCompilerOptions\": {\n  \"strictTemplates\": true\n}\n```\n\nFor more information, see the [Angular compiler options](https://angular.io/guide/angular-compiler-options) guide.\n\n## Versioning\n\nThe language service extension relies on the `@angular/language-service` and `typescript` packages\n\nfor its backend. `@angular/language-service` is always bundled with the extension, and is always\nthe latest version at the time of the release.\n`typescript` is loaded, in order of priority, from:\n\n1. The path specified by `typescript.tsdk` in project or global settings.\n2. _(Recommended)_ The version of `typescript` bundled with the Angular Language Service extension.\n3. The version of `typescript` present in the current workspace's node_modules.\n\nWe suggest **not** specifying `typescript.tsdk` in your VSCode settings\nper method (1) above. If the `typescript` package is loaded by methods (1) or (3), there is a potential\nfor a mismatch between the API expected by `@angular/language-service` and the API provided by `typescript`.\nThis could lead to a failure of the language service extension.\n\nFor more information, please see [#594](https://github.com/angular/vscode-ng-language-service/issues/594).\n\n### Buy Me A Coffee ☕️\n\n![btc](https://img.shields.io/keybase/btc/iamcco.svg?style=popout-square)\n\n![image](https://user-images.githubusercontent.com/5492542/42771079-962216b0-8958-11e8-81c0-520363ce1059.png)\n","funding_links":["https://github.com/iamcco/markdown-preview.nvim#buy-me-a-coffee-%EF%B8%8F"],"categories":["Language Support","TypeScript"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiamcco%2Fcoc-angular","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiamcco%2Fcoc-angular","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiamcco%2Fcoc-angular/lists"}