{"id":17047001,"url":"https://github.com/deathaxe/sublime-mtx","last_synced_at":"2025-10-24T23:13:24.338Z","repository":{"id":158368661,"uuid":"61480846","full_name":"deathaxe/sublime-mtx","owner":"deathaxe","description":"CNC BoschRexroth MTX language support for SublimeText","archived":false,"fork":false,"pushed_at":"2022-08-22T17:32:58.000Z","size":84,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-28T09:46:16.838Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/deathaxe.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2016-06-19T13:11:23.000Z","updated_at":"2022-08-22T17:32:43.000Z","dependencies_parsed_at":null,"dependency_job_id":"ad963629-b925-4783-bbfd-78c9bb40b1a8","html_url":"https://github.com/deathaxe/sublime-mtx","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deathaxe%2Fsublime-mtx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deathaxe%2Fsublime-mtx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deathaxe%2Fsublime-mtx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deathaxe%2Fsublime-mtx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/deathaxe","download_url":"https://codeload.github.com/deathaxe/sublime-mtx/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245052514,"owners_count":20553161,"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":[],"created_at":"2024-10-14T09:48:05.670Z","updated_at":"2025-10-24T23:13:19.289Z","avatar_url":"https://github.com/deathaxe.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# [CNC BoschRexroth MTX language support][home]\r\n[![The MIT License](https://img.shields.io/badge/license-MIT-orange.svg?style=flat-square)](LICENSE)\r\n[![Package Control](https://packagecontrol.herokuapp.com/downloads/CNC%20BoschRexroth%20MTX.svg?style=flat-square)](https://packagecontrol.io/packages/CNC%20BoschRexroth%20MTX)\r\n\r\nThis package provides syntax highlighting support for the\r\n[BoschRexroth MTX][4] Computerized Numerical Control to the [SublimeText 3 Editor][1].\r\n\r\n## Screenshot:\r\n![screenshot](screenshot.png)\r\n\r\n## Features:\r\n\r\n* NC cycles\r\n  * syntax highlighting\r\n    * ISO G-Code\r\n    * CPL high level commands\r\n    * known NC functions and commands\r\n  * symbols for\r\n    * LPS - local sub programs\r\n    * LBL - labels (goto targets)\r\n    * auto completion for the most common DIN/CPL functions\r\n\r\n* Sercos Settings Files (*.scs)\r\n  * syntax highlighting\r\n\r\n## Installing\r\n\r\n\r\n### Using [Package Control][2]\r\n\r\nFor all Sublime Text 2/3 users install via [Package Control][2] is recommended.\r\n\r\n1. [Install][3] Package Control if you haven't yet.\r\n2. Use \u003ckbd\u003ectrl\u003c/kbd\u003e+\u003ckbd\u003eshift\u003c/kbd\u003e+\u003ckbd\u003eP\u003c/kbd\u003e then `Package Control: Install Package`\r\n3. Look for `CNC BoschRexroth MTX` and install it.\r\n\r\n\r\n### Manual Install\r\n\r\n1. Click the `Preferences \u003e Browse Packages…` menu\r\n2. Browse up a folder and then into the `Installed Packages/` folder\r\n3. Download [zip package][zip] rename it to `CNC BoschRexroth MTX.sublime-package` and copy it into the `Installed Packages/` directory\r\n4. Restart Sublime Text\r\n\r\n\r\n## Setup\r\n\r\nIf ``mtx_npg.sublime-settings`` or ``mtx_scs.sublime-settings`` don't exist in the user folder they will be automatically created to ensure the following essential syntax specific settings:\r\n\r\n```javascript\r\n{\r\n  \"ensure_newline_at_eof_on_save\": true\r\n  \"translate_tabs_to_spaces\": true\r\n  \"use_tab_stops\": false\r\n}\r\n```\r\n\r\nThey are all required to ensure NC will read the resulting file correctly.\r\nYou can override these settings by creating your own syntax specific setting ``Preferences-\u003eSettings - Syntax Specific``\r\n\r\n## License\r\nThe code is available at [GitHub][home] under [MIT licence][lic].\r\n\r\n[home]: \u003chttps://github.com/deathaxe/sublime-mtx\u003e\r\n[lic]:  \u003chttps://github.com/deathaxe/sublime-mtx/blob/master/LICENSE\u003e\r\n[zip]:  \u003chttps://github.com/deathaxe/sublime-mtx/archive/master.zip\u003e\r\n[1]:    \u003chttp://www.sublimetext.com\u003e\r\n[2]:    \u003chttps://packagecontrol.io\u003e\r\n[3]:    \u003chttps://packagecontrol.io/installation\u003e\r\n[4]:    \u003chttps://www.boschrexroth.com/en/xc/products/product-groups/electric-drives-and-controls/cnc/indramotion-mtx/indramotion-mtx\u003e\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeathaxe%2Fsublime-mtx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdeathaxe%2Fsublime-mtx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeathaxe%2Fsublime-mtx/lists"}