By default, when in a .markdown or .md file, and Ctrl-p is pressed, this plugin will either open a preview in your browser, or refresh your current preview (can be remapped, see Options).
It is recommended to use grip when rendering Unicode characters.
Options
All options have default values and work out of the box. If you prefer to change these, just add the following lines to your .vimrc file.
Note that after changing an option, you have to restart Vim for the change to take effect.
There are a total of four values (0, 1, 2, 3) this option can take.
Default: 0, which maps Control p (not a buffer write) to generating the preview and does not display images.
Example: To display images with the hotkey mapping (defaults to Control p).
let vim_markdown_preview_toggle=1
Example: To display images automatically on buffer write.
let vim_markdown_preview_toggle=2
Example: To disregard images and still automatically preview on buffer write.
let vim_markdown_preview_toggle=3
The vim_markdown_preview_hotkey option
By default, this plugin maps <C-p> (Control p) to activate the preview. To remap Control p to a different hotkey, change the binding. Don't forget to add the single quotation marks.
Default: '<C-p>'
Example: Mapping Control M.
let vim_markdown_preview_hotkey='<C-m>'
The vim_markdown_preview_browser option
By default, if you are using Unix, Google Chrome is the default browser. If you are on Mac OS X, Safari is the default.
Note that bug #16 does not allow cross operating system and browser support. See the wiki page for more help.
Default: 'Google Chrome'
Example: Using Google Chrome.
let vim_markdown_preview_browser='Google Chrome'
The vim_markdown_preview_temp_file option
By default, this plugin keeps the rendered .html file. If you would automatically like to remove the html file after opening it in a browser, set this option to 1. Note that removing the rendered html file with a slow browser may err.
请发表评论