{"id":21646738,"url":"https://github.com/cylc/language-cylc","last_synced_at":"2025-07-17T18:30:37.583Z","repository":{"id":56505516,"uuid":"274169051","full_name":"cylc/language-cylc","owner":"cylc","description":"Atom language package for Cylc workflow configuration files","archived":true,"fork":false,"pushed_at":"2020-11-03T14:35:49.000Z","size":30,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-03-20T00:47:11.846Z","etag":null,"topics":["atom","atom-language","atom-package","cylc"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cylc.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-06-22T15:05:05.000Z","updated_at":"2024-09-06T14:21:44.000Z","dependencies_parsed_at":"2022-08-15T20:00:48.293Z","dependency_job_id":null,"html_url":"https://github.com/cylc/language-cylc","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/cylc/language-cylc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cylc%2Flanguage-cylc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cylc%2Flanguage-cylc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cylc%2Flanguage-cylc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cylc%2Flanguage-cylc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cylc","download_url":"https://codeload.github.com/cylc/language-cylc/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cylc%2Flanguage-cylc/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265645284,"owners_count":23804183,"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":["atom","atom-language","atom-package","cylc"],"created_at":"2024-11-25T06:46:29.914Z","updated_at":"2025-07-17T18:30:37.289Z","avatar_url":"https://github.com/cylc.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cylc language package for Atom\n\nAn Atom extension that provides language support for Cylc workflow configuration files.\n\n## Features\n\nSyntax highlighting:\n- Cylc 7\n- Cylc 8\n- ISO 8601 datetimes\n- Jinja2 (can be used with a Jinja extension e.g. [atom-jinja2](https://atom.io/packages/atom-jinja2))\n\nCheck [here](https://github.com/cylc/cylc-flow/issues/2752) for info on supported syntax features.\n\n## Installation\n\nInstall from the Atom settings, [the Atom website](https://atom.io/packages/language-cylc), or by running `apm install language-cylc`.\n\nBy default, only files called `suite.rc` and `suite.rc.processed` (and with the future Cylc 8 extension `.cylc`) will use the package. If you want all `.rc` files to use it: in Atom, go to `Edit \u003e Config...` and add the desired extension to your Atom config file under `core.customFileTypes.source.cylc`, like this:\n```cson\n\"*\":\n  core:\n    customFileTypes:\n      \"source.cylc\": [\n        \"rc\"\n      ]\n```\n\n## Issues\n\nPlease report any syntax highlighting issues at [cylc/cylc-textmate-grammar](https://github.com/cylc/cylc-textmate-grammar/issues). Any other issues with the extension should be reported [here](https://github.com/cylc/language-cylc/issues).\n\n## Contributing\n\nThis repo includes the [cylc/cylc-textmate-grammar](https://github.com/cylc/cylc-textmate-grammar) repo as a git submodule. If you don't have experience with submodules, you should [read the docs](https://git-scm.com/book/en/v2/Git-Tools-Submodules) first.\n\nThe cylc-textmate-grammar repo contains a JSON TextMate grammar file which is used by Atom for syntax highlighting (symlinked to by `grammars/cylc.json`). Read the [Atom guide on creating a TextMate grammar](https://flight-manual.atom.io/hacking-atom/sections/creating-a-legacy-textmate-grammar/) for more information. **Note:** do not edit the JSON file when contributing; instead you should edit the JavaScript grammar file and build it, as explained in the [contributing](https://github.com/cylc/cylc-textmate-grammar#contributing) section of cylc-texmate-grammar. Any edits will be part of that repo as opposed to this repo.\n\nTo install a development copy of the package:\n```\ngit clone --recurse-submodules https://github.com/cylc/language-cylc.git\ncd language-cylc\napm link --dev\n```\nThe `--recurse-submodules` option automatically initialises the cylc-textmate-grammar submodule. `apm link --dev` symlinks the clone to `~/.atom/dev/` so that it is loaded when you run Atom in dev mode:\n```\natom --dev .\n```\n\nYou can then edit the `cylc-textmate-grammar/src/cylc.tmLanguage.js` grammar file. First, [read the contributing section](https://github.com/cylc/cylc-textmate-grammar#contributing) of the cylc-textmate-grammar repo - any such edits will be part of that repo as opposed to this vscode-cylc repo. Remember to run `npm build` inside `cylc-texmate-grammar` after editing \u0026 saving the file. Reload the dev window using \u003ckbd\u003eCtrl\u003c/kbd\u003e+\u003ckbd\u003eShift\u003c/kbd\u003e+\u003ckbd\u003eF5\u003c/kbd\u003e.\n\nContributions to Atom-specific features are to be made in this repo, not the submodule.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcylc%2Flanguage-cylc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcylc%2Flanguage-cylc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcylc%2Flanguage-cylc/lists"}