{"id":23148189,"url":"https://github.com/khtdr/glicol-mode","last_synced_at":"2026-02-13T20:59:13.102Z","repository":{"id":268195523,"uuid":"903608467","full_name":"khtdr/glicol-mode","owner":"khtdr","description":"An Emacs major mode for the Glicol audio programming language.","archived":false,"fork":false,"pushed_at":"2024-12-18T23:52:53.000Z","size":633,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-10-05T01:59:06.980Z","etag":null,"topics":["audio","emacs","glicol"],"latest_commit_sha":null,"homepage":"","language":"Emacs Lisp","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/khtdr.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}},"created_at":"2024-12-15T03:46:23.000Z","updated_at":"2025-02-02T16:21:41.000Z","dependencies_parsed_at":"2025-04-04T13:54:48.166Z","dependency_job_id":null,"html_url":"https://github.com/khtdr/glicol-mode","commit_stats":null,"previous_names":["khtdr/glicol-mode"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/khtdr/glicol-mode","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khtdr%2Fglicol-mode","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khtdr%2Fglicol-mode/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khtdr%2Fglicol-mode/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khtdr%2Fglicol-mode/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/khtdr","download_url":"https://codeload.github.com/khtdr/glicol-mode/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khtdr%2Fglicol-mode/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29417705,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-13T06:24:03.484Z","status":"ssl_error","status_checked_at":"2026-02-13T06:23:12.830Z","response_time":78,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["audio","emacs","glicol"],"created_at":"2024-12-17T17:09:35.407Z","updated_at":"2026-02-13T20:59:13.085Z","avatar_url":"https://github.com/khtdr.png","language":"Emacs Lisp","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Glicol Mode for Emacs\n\nAn Emacs major mode for the [Glicol](https://glicol.org) audio programming language.\n\n## Features\n\n- Syntax highlighting for Glicol code\n- Smart code completion with documentation\n- Integration with glicol-cli\n- Built-in commands for controlling the Glicol server\n- Doom Emacs integration\n- Real-time documentation lookup\n- Intelligent context-aware suggestions\n- Dedicated Glicol-CLI buffer shows status and errors\n\n![Screenshot](./screenshot.png \"Emacs screenshot\")\n\n![Screenshot](./completion.png \"Company completion\")\n\n![Screenshot](./modeline.png \"Doom integration\")\n\n![Screenshot](./status.png \"Status display\")\n\n![Screenshot](./errors.png \"Error display\")\n\n## Installation\n\n### Prerequisites\n\n- Emacs 26.1 or later\n- [glicol-cli](https://github.com/glicol/glicol-cli) installed and available in your PATH\n- Sample audio files from the [Glicol repository](https://github.com/chaosprint/glicol/tree/main/js/assets)\n\nAfter downloading the samples, you need to set the `GLICOL_CLI_SAMPLES_PATH` environment variable to point to your samples directory:\n\n```bash\n# Add to your shell configuration file (.bashrc, .zshrc, config.fish, etc):\nexport GLICOL_CLI_SAMPLES_PATH=\"/path/to/your/samples\"\n```\n\n### Manual Installation\n\nClone this repository:\n\n```bash\ngit clone https://github.com/khtdr/glicol-mode.git\n```\n\nAdd to your `init.el`:\n\n```elisp\n(add-to-list 'load-path \"/path/to/glicol-mode\")\n(require 'glicol-mode)\n```\n\n### With straight.el\n\n```elisp\n(straight-use-package\n  '(glicol-mode :type git :host github :repo \"khtdr/glicol-mode\"))\n```\n\n### With use-package\n\n```elisp\n(use-package glicol-mode\n  :load-path \"/path/to/glicol-mode\"\n  :mode \"\\\\.glicol\\\\'\")\n```\n\n### Doom Emacs Users\n\nAdd to your `packages.el`:\n\n```elisp\n(package! glicol-mode\n  :recipe (:host github :repo \"khtdr/glicol-mode\"))\n```\n\n## Usage\n\nFiles with the `.glicol` extension will automatically open in Glicol mode.\n\n### Key Bindings\n\n- `C-c C-s` - Start the Glicol server\n- `C-c C-q` - Quit the Glicol server\n- `C-c C-c` - Check server status\n- `C-c C-r` - Restart the server\n- `C-c C-b` - Set BPM (beats per minute)\n\nFor Doom Emacs users, the modeline will show the Glicol server status with clickable buttons to start/stop the server.\n\n### Customization\n\nYou can customize the path to the glicol-cli executable:\n\n```elisp\n;; Set the path to glicol-cli:\n(setq glicol-cli-command \"/path/to/glicol-cli\")\n\n;; Set the default BPM (beats per minute):\n(setq glicol-bpm 120)\n```\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## License\n\nThis project is licensed under the GPL-3.0 License - see the LICENSE file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkhtdr%2Fglicol-mode","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkhtdr%2Fglicol-mode","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkhtdr%2Fglicol-mode/lists"}