{"id":24434027,"url":"https://github.com/itspriddle/vim-marked","last_synced_at":"2026-02-18T02:01:25.642Z","repository":{"id":2410084,"uuid":"3377884","full_name":"itspriddle/vim-marked","owner":"itspriddle","description":"Open the current Markdown buffer in Marked 2 (macOS only)","archived":false,"fork":false,"pushed_at":"2025-02-07T02:48:17.000Z","size":62,"stargazers_count":103,"open_issues_count":2,"forks_count":16,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-05-25T14:04:50.316Z","etag":null,"topics":["macos","markdown","vim","vim-plugin"],"latest_commit_sha":null,"homepage":"","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/itspriddle.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,"zenodo":null}},"created_at":"2012-02-07T14:17:27.000Z","updated_at":"2025-02-11T22:42:11.000Z","dependencies_parsed_at":"2025-01-20T16:52:56.343Z","dependency_job_id":"b259ceec-9058-477c-bfcc-733aaddece63","html_url":"https://github.com/itspriddle/vim-marked","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/itspriddle/vim-marked","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itspriddle%2Fvim-marked","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itspriddle%2Fvim-marked/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itspriddle%2Fvim-marked/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itspriddle%2Fvim-marked/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/itspriddle","download_url":"https://codeload.github.com/itspriddle/vim-marked/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itspriddle%2Fvim-marked/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29566366,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T00:47:08.760Z","status":"online","status_checked_at":"2026-02-18T02:00:09.468Z","response_time":162,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["macos","markdown","vim","vim-plugin"],"created_at":"2025-01-20T16:52:50.223Z","updated_at":"2026-02-18T02:01:25.627Z","avatar_url":"https://github.com/itspriddle.png","language":"Vim Script","readme":"# marked.vim\n\nOpen the current Markdown buffer in [Marked 2](https://marked2app.com/).\n\nAdds `:MarkedOpen`, `:MarkedQuit`, `:MarkedToggle`, and `:MarkedPreview`\ncommands to Markdown buffers, allowing you to quickly open, close, and preview\ncontent in Marked.\n\n**Note**: Since Marked is available only for macOS, this plugin will not be\nloaded on other operating systems.\n\n## Usage\n\nThis plugin adds the following commands to Markdown buffers (see\n`g:marked_filetypes` below to add more FileTypes):\n\n#### :MarkedOpen[!]\n\nOpen the current Markdown file in Marked. Call with a bang to prevent Marked\nfrom stealing focus from Vim. Documents opened in Marked are tracked and\nclosed automatically when you quit Vim.\n\n#### :MarkedQuit[!]\n\nClose the current Markdown buffer in Marked. Quits Marked if there are no\nother documents open. Call with a bang to quit Marked completely.\n\n#### :MarkedToggle[!]\n\nIf the current Markdown file is already open in Marked, same as\n`:MarkedQuit[!]`. If not, same as `:MarkedOpen[!]`.\n\n#### :[range]MarkedPreview[!]\n\nSend the current range (defaults to the entire buffer) to Marked as a preview.\nCall with a bang to prevent Marked from stealing focus from Vim.\n\n## Configuration\n\n**`g:marked_filetypes`**\n\nVim FileTypes that can be opened by Marked and will load this plugin. The\ndefault is as follows and can be customized in your `vimrc` if necessary:\n\n```vim\nlet g:marked_filetypes = [\"markdown\", \"mkd\", \"ghmarkdown\", \"vimwiki\"]\n```\n\n**`g:marked_auto_quit`**\n\nIf true, quit Marked when Vim exits. Default is true. To disable, add the\nfollowing to your `vimrc`:\n\n```vim\nlet g:marked_auto_quit = 0\n```\n\n**`g:marked_app`**\n\nThe Marked application name. By default this is \"Marked 2\". If your version of\nMarked 2 doesn't open with `open -a \"Marked 2\"`, you can specify a different\nname or path to the application.\n\n```vim\nlet g:marked_app = \"/Applications/Setapp/Marked 2.app\"\n```\n\nNote that this plugin requires Marked 2. If you are still using Marked 1, you\ncan use the 1.0.0 release of this plugin (see [below](#marked-1)).\n\n## Installation\n\nUse your favorite plugin manager to install this plugin. For example, using\n[vim-plug](https://github.com/junegunn/vim-plug):\n\n```vim\nPlug 'itspriddle/vim-marked'\n```\n\nOr using vim's built-in package manager:\n\n```sh\nmkdir -p ~/.vim/pack/itspriddle/start\ncd ~/.vim/pack/itspriddle/start\ngit clone https://github.com/itspriddle/vim-marked.git\nvim -u NONE -c \"helptags vim-marked/doc\" -c q\n```\n\n### Marked 1\n\nIf you are using the older first version of Marked, you can use v1.0.0 of this\nplugin from \u003chttps://github.com/itspriddle/vim-marked/releases/tag/v1.0.0\u003e.\n\nFor vim-plug:\n\n```vim\nPlug 'itspriddle/vim-marked', { 'tag': 'v1.0.0' }\n```\n\nOr using vim's built-in package manager:\n\n```sh\nmkdir -p ~/.vim/pack/itspriddle/start\ncd ~/.vim/pack/itspriddle/start\ngit clone --branch v1.0.0 https://github.com/itspriddle/vim-marked.git\nvim -u NONE -c \"helptags vim-marked/doc\" -c q\n```\n\n## License\n\nMIT License - see [`LICENSE`](./LICENSE) in this repo.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitspriddle%2Fvim-marked","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fitspriddle%2Fvim-marked","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitspriddle%2Fvim-marked/lists"}