{"id":18413682,"url":"https://github.com/dylanjm/emacs-moose-mode","last_synced_at":"2026-03-19T04:15:41.861Z","repository":{"id":54240006,"uuid":"245012847","full_name":"dylanjm/emacs-moose-mode","owner":"dylanjm","description":"An Emacs major-mode for MOOSE input files.","archived":false,"fork":false,"pushed_at":"2021-03-01T22:04:01.000Z","size":236,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-13T01:41:44.105Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Emacs Lisp","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/dylanjm.png","metadata":{"files":{"readme":"README.org","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-03-04T22:00:20.000Z","updated_at":"2024-11-25T18:02:08.000Z","dependencies_parsed_at":"2022-08-13T09:50:34.604Z","dependency_job_id":null,"html_url":"https://github.com/dylanjm/emacs-moose-mode","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/dylanjm/emacs-moose-mode","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dylanjm%2Femacs-moose-mode","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dylanjm%2Femacs-moose-mode/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dylanjm%2Femacs-moose-mode/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dylanjm%2Femacs-moose-mode/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dylanjm","download_url":"https://codeload.github.com/dylanjm/emacs-moose-mode/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dylanjm%2Femacs-moose-mode/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28670381,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-22T19:36:09.361Z","status":"ssl_error","status_checked_at":"2026-01-22T19:36:05.567Z","response_time":144,"last_error":"SSL_read: 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":[],"created_at":"2024-11-06T03:47:16.164Z","updated_at":"2026-01-22T20:32:44.262Z","avatar_url":"https://github.com/dylanjm.png","language":"Emacs Lisp","funding_links":[],"categories":[],"sub_categories":[],"readme":"#+title: MOOSE-Mode\n\n#+ATTR_HTML: :style margin-left: auto; margin-right: auto;\n[[https://img.shields.io/github/v/tag/dylanjm/emacs-moose-mode][https://img.shields.io/github/v/tag/dylanjm/emacs-moose-mode.svg?label=release]]\n[[https://github.com/dylanjm/emacs-moose-mode/actions][file:https://github.com/dylanjm/emacs-moose-mode/workflows/CI/badge.svg]]\n\nThis is an Emacs major-mode for [[https://github.com/idaholab/moose][MOOSE]] input and testing files. It provides syntax-highlighting and other functionality.\n\n[[file:assets/example.png]]\n\n** Installation\n\nCurrently, this package is not yet available on [[https://melpa.org/#/][MELPA]]. In the meantime, you can install =emacs-moose-mode= by cloning this repo and telling your =init.el= file where to find it:\n\n#+begin_src emacs-lisp\n(add-to-list 'load-path \"\u003cpath-to-moose-mode\u003e\")\n(require 'moose-mode)\n#+end_src\n\nOr, if you use [[https://github.com/raxod502/straight.el][straight package manager]] you can:\n\n#+begin_src emacs-lisp\n(use-package\n  :straight (:host github :repo \"dylanjm/emacs-moose-mode\"))\n#+end_src\n\n** Usage\n\nBy default, =moose-mode= is set to 'auto-activate' when emacs opens =*.i=, =assessment=, or =test= files.\n\nAlso, =moose-mode= defaults to using an indentation-offset of 2. You can change this variable by\nputting the following in your =init.el=:\n\n#+begin_src emacs-lisp\n(with-eval-after-load moose-mode\n  (setq moose-indent-offset 4))\n#+end_src\n\n** Roadmap\n\nListed in order from /most-practical/ to /strech-goals/.\n\n+ [X] Syntax Highlighting\n+ [X] Mode-Specific Indentation\n+ [ ] Navigation Functions\n+ [ ] Snippets\n+ [ ] Autocomplete (Company-Mode integration)\n+ [ ] Action-Expansion\n+ [ ] Linting\n\n*Note*: Some of these goals may be broken off into separate libraries.\n\n** Contribution\n\nIf you find a bug or would like to contribute, please submit an [[https://github.com/dylanjm/emacs-moose-mode/issues][issue]] and/or a [[https://github.com/dylanjm/emacs-moose-mode/pulls][pull-request]].\n\n** Related Projects\n\n+ [[https://github.com/idaholab/moose][MOOSE]]\n+ [[https://github.com/dylanjm/moose-hit-format.el][Moose-HIT-Format (Emacs)]]\n+ [[https://github.com/dschwen/moose-hit-format][Moose-HIT-Format (Atom)]]\n+ [[https://github.com/dschwen/language-moose][Language-Moose (Atom)]]\n+ [[https://github.com/dschwen/autocomplete-moose][Moose-Autocomplete (Atom)]]\n\n** MIT License\n#+begin_example\nCopyright 2020-2021 Dylan McDowell\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n#+end_example\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdylanjm%2Femacs-moose-mode","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdylanjm%2Femacs-moose-mode","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdylanjm%2Femacs-moose-mode/lists"}