{"id":16976116,"url":"https://github.com/eigenfoo/stan-vim","last_synced_at":"2025-03-22T14:31:49.263Z","repository":{"id":50894039,"uuid":"220559535","full_name":"eigenfoo/stan-vim","owner":"eigenfoo","description":"A Vim plugin for the Stan probabilistic programming language.","archived":false,"fork":false,"pushed_at":"2023-12-13T01:53:44.000Z","size":531,"stargazers_count":52,"open_issues_count":0,"forks_count":4,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-03-18T12:03:25.687Z","etag":null,"topics":["mc-stan","stan","syntax-highlighting","vim","vim-plugin"],"latest_commit_sha":null,"homepage":"https://www.vim.org/scripts/script.php?script_id=5835","language":"Vim Script","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/eigenfoo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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":"2019-11-08T22:46:04.000Z","updated_at":"2025-02-07T15:10:15.000Z","dependencies_parsed_at":"2023-12-13T02:41:38.148Z","dependency_job_id":"ac44d9ea-7310-4739-9da5-9f68f69de47c","html_url":"https://github.com/eigenfoo/stan-vim","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eigenfoo%2Fstan-vim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eigenfoo%2Fstan-vim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eigenfoo%2Fstan-vim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eigenfoo%2Fstan-vim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eigenfoo","download_url":"https://codeload.github.com/eigenfoo/stan-vim/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244972272,"owners_count":20540952,"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":["mc-stan","stan","syntax-highlighting","vim","vim-plugin"],"created_at":"2024-10-14T01:24:59.106Z","updated_at":"2025-03-22T14:31:48.890Z","avatar_url":"https://github.com/eigenfoo.png","language":"Vim Script","readme":"# stan-vim\n\n[![Coverage Status](https://img.shields.io/endpoint.svg?url=https%3A%2F%2Factions-badge.atrox.dev%2Feigenfoo%2Fstan-vim%2Fbadge%3Fref%3Dmaster\u0026style=flat)](https://actions-badge.atrox.dev/eigenfoo/stan-vim/goto?ref=master) \n\nA Vim plugin for the [Stan probabilistic programming language](https://mc-stan.org/).\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://raw.github.com/eigenfoo/stan-vim/master/screenshots/screenshot0.png\"\u003e\u003cimg src=\"https://raw.github.com/eigenfoo/stan-vim/master/screenshots/screenshot0.png\" alt=\"Screenshot of stan-vim syntax highlighting\" width=\"600\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n## Table of Contents\n\n- [Features](#features)\n- [Installation](#installation)\n  - [Vundle, NeoBundle and VimPlug](#vundle-neobundle-and-vimplug)\n  - [Pathogen](#pathogen)\n  - [Home Manager](#home-manager)\n  - [Manual Installation](#manual-installation)\n- [Documentation](#documentation)\n- [Additional Screenshots](#additional-screenshots)\n- [License](#license)\n\n## Features\n\n1. Syntax highlighting of Stan types, keywords and built-in functions.\n1. Automatic indentation consistent the recommended Stan code style.\n1. Folding via code indentation.\n1. Autocompletion of Stan keywords and functions via the Vim built-in `omnifunc`.\n\n## Installation\n\n### Vundle, NeoBundle and VimPlug\n\nFor Vundle users, place this in your `.vimrc`:\n\n```\nPlugin 'eigenfoo/stan-vim'\n```\n\n...then run the following in Vim:\n\n```\n:source %\n:PluginInstall\n```\n\nFor Vundle versions \u003c 0.10.2, replace `Plugin` with `Bundle` above.\n\nFor NeoBundle users, replace `Plugin` with `NeoBundle` above.\n\nFor VimPlug users, replace `Plugin` with `Plug` above.\n\n### Pathogen\n\nRun the following from the terminal:\n\n```bash\ncd ~/.vim/bundle\ngit clone https://github.com/eigenfoo/stan-vim\n```\n\n### Home Manager\n\nNix users who manage their Vim plugins with Home Manager can grab `stan-vim` from nixpkgs:\n\n```nix\n{ pkgs, ... }:\n{\n  # or programs.neovim.plugins\n  programs.vim.plugins = with pkgs.vimPlugins; [\n    stan-vim\n    # ...\n  ];\n}\n```\n\n### Manual Installation\n\nCopy all files into your `~/.vim` directory.\n\n## Documentation\n\nFrom Vim:\n\n```\n:help stan\n```\n\nAlternatively, [read the documentation page on\nGitHub](https://github.com/eigenfoo/stan-vim/blob/master/doc/stan.txt).\n\n## Additional Screenshots\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://raw.github.com/eigenfoo/stan-vim/master/screenshots/screenshot1.png\"\u003e\u003cimg src=\"https://raw.github.com/eigenfoo/stan-vim/master/screenshots/screenshot1.png\" alt=\"Screenshot of stan-vim syntax highlighting\" width=\"600\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://raw.github.com/eigenfoo/stan-vim/master/screenshots/screenshot2.png\"\u003e\u003cimg src=\"https://raw.github.com/eigenfoo/stan-vim/master/screenshots/screenshot2.png\" alt=\"Screenshot of stan-vim syntax highlighting\" width=\"600\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://raw.github.com/eigenfoo/stan-vim/master/screenshots/screenshot3.png\"\u003e\u003cimg src=\"https://raw.github.com/eigenfoo/stan-vim/master/screenshots/screenshot3.png\" alt=\"Screenshot of stan-vim syntax highlighting\" width=\"600\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n## License\n\n`stan-vim` is distributed under the MIT license. [See the license file on\nGitHub](https://github.com/eigenfoo/stan-vim/blob/master/LICENSE).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feigenfoo%2Fstan-vim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feigenfoo%2Fstan-vim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feigenfoo%2Fstan-vim/lists"}