A Vim/Neovim plugin to open Markdown files in Arto, a Markdown reader application. Supports macOS and Linux.
- Vim 9.0+ or Neovim 0.10+
- Arto v0.15.0+
- macOS: installed at
/Applications/Arto.app(configurable viag:arto_path) - Linux:
artocommand available in$PATH(configurable viag:arto_path)
- macOS: installed at
Use your favorite plugin manager.
For vim-plug:
Plug 'arto-app/arto.vim'For lazy.nvim:
{ 'arto-app/arto.vim' }| Command | Description |
|---|---|
:Arto |
Open the current file in Arto |
:Arto {path} ... |
Open the specified file(s) in Arto |
:ArtoVersion |
Show the version of the Arto executable |
" macOS (default: '/Applications/Arto.app')
let g:arto_path = '/Applications/Arto.app'
" Linux (default: 'arto')
let g:arto_path = 'arto'MIT