All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
1 *vim-markdown* Vim Markdown
3 ===============================================================================
6 1. Introduction |vim-markdown-introduction|
7 2. Installation |vim-markdown-installation|
8 3. Basic usage |vim-markdown-basic-usage|
9 1. Folding |vim-markdown-folding|
10 2. Concealing |vim-markdown-concealing|
11 4. Options |vim-markdown-options|
12 1. Disable Folding |vim-markdown-disable-folding|
13 2. Change fold style |vim-markdown-change-fold-style|
14 3. Set header folding level |vim-markdown-set-header-folding-level|
15 4. Disable Default Key Mappings |vim-markdown-disable-default-key-mappings|
16 5. Enable TOC window auto-fit |vim-markdown-enable-toc-window-auto-fit|
17 6. Text emphasis restriction to single-lines
18 |vim-markdown-text-emphasis-restriction-to-single-lines|
19 7. Syntax Concealing |vim-markdown-syntax-concealing|
20 8. Fenced code block languages |vim-markdown-fenced-code-block-languages|
21 9. Follow named anchors |vim-markdown-follow-named-anchors|
22 10. Syntax extensions |vim-markdown-syntax-extensions|
23 1. LaTeX math |vim-markdown-latex-math|
24 2. YAML Front Matter |vim-markdown-yaml-front-matter|
25 3. TOML Front Matter |vim-markdown-toml-front-matter|
26 4. JSON Front Matter |vim-markdown-json-front-matter|
27 5. Strikethrough |vim-markdown-strikethrough|
28 11. Adjust new list item indent |vim-markdown-adjust-new-list-item-indent|
29 12. Do not require .md extensions for Markdown links
30 |vim-markdown-do-not-require-.md-extensions-for-markdown-links|
31 13. Auto-write when following link
32 |vim-markdown-auto-write-when-following-link|
33 14. Change default file extension
34 |vim-markdown-change-default-file-extension|
35 15. Do not automatically insert bulletpoints
36 |vim-markdown-do-not-automatically-insert-bulletpoints|
37 16. Change how to open new files |vim-markdown-change-how-to-open-new-files|
38 5. Mappings |vim-markdown-mappings|
39 6. Commands |vim-markdown-commands|
40 7. Credits |vim-markdown-credits|
41 8. License |vim-markdown-license|
42 9. References |vim-markdown-references|
44 ===============================================================================
45 *vim-markdown-introduction*
48 Syntax highlighting, matching rules and mappings for the original Markdown [1]
51 ===============================================================================
52 *vim-markdown-installation*
55 If you use Vundle [2], add the following line to your '~/.vimrc':
57 Plugin 'godlygeek/tabular'
58 Plugin 'plasticboy/vim-markdown'
60 The 'tabular' plugin must come _before_ 'vim-markdown'.
67 If you use Pathogen [3], do this:
70 git clone https://github.com/plasticboy/vim-markdown.git
72 To install without Pathogen using the Debian vim-addon-manager [4], do this:
74 git clone https://github.com/plasticboy/vim-markdown.git
77 vim-addon-manager install markdown
79 If you are not using any package manager, download the tarball [5] and do this:
82 tar --strip=1 -zxf vim-markdown-master.tar.gz
84 ===============================================================================
85 *vim-markdown-basic-usage*
88 -------------------------------------------------------------------------------
89 *vim-markdown-folding*
92 Folding is enabled for headers by default.
94 The following commands are useful to open and close folds:
97 - 'zr': reduces fold level throughout the buffer
99 - 'zR': opens all folds
101 - 'zm': increases fold level throughout the buffer
103 - 'zM': folds everything all the way
105 - 'za': open a fold your cursor is on
107 - 'zA': open a fold your cursor is on recursively
109 - 'zc': close a fold your cursor is on
111 - 'zC': close a fold your cursor is on recursively
113 Options are available to disable folding or change folding style.
115 Try ':help fold-expr' and ':help fold-commands' for details.
117 -------------------------------------------------------------------------------
118 *vim-markdown-concealing*
121 Concealing is set for some syntax such as bold, italic, code block and link.
123 Concealing lets you conceal text with other text. The actual source text is not
124 modified. If you put your cursor on the concealed line, the conceal goes away.
126 Options are available to disable or change concealing.
128 Try ':help concealcursor' and ':help conceallevel' for details.
130 ===============================================================================
131 *vim-markdown-options*
134 -------------------------------------------------------------------------------
135 *vim-markdown-disable-folding*
136 *g:vim_markdown_folding_disabled*
139 Add the following line to your '.vimrc' to disable the folding configuration:
141 let g:vim_markdown_folding_disabled = 1
143 This option only controls Vim Markdown specific folding configuration.
145 To enable/disable folding use Vim's standard folding configuration.
149 -------------------------------------------------------------------------------
150 *vim-markdown-change-fold-style*
151 *g:vim_markdown_folding_style_pythonic*
152 *g:vim_markdown_override_foldtext*
155 To fold in a style like python-mode [6], add the following to your '.vimrc':
157 let g:vim_markdown_folding_style_pythonic = 1
159 Level 1 heading which is served as a document title is not folded.
160 'g:vim_markdown_folding_level' setting is not active with this fold style.
162 To prevent foldtext from being set add the following to your '.vimrc':
164 let g:vim_markdown_override_foldtext = 0
166 -------------------------------------------------------------------------------
167 *vim-markdown-set-header-folding-level*
168 *g:vim_markdown_folding_level*
169 Set header folding level ~
171 Folding level is a number between 1 and 6. By default, if not specified, it is
174 let g:vim_markdown_folding_level = 6
176 Tip: it can be changed on the fly with:
178 :let g:vim_markdown_folding_level = 1
181 -------------------------------------------------------------------------------
182 *vim-markdown-disable-default-key-mappings*
183 *g:vim_markdown_no_default_key_mappings*
184 Disable Default Key Mappings ~
186 Add the following line to your '.vimrc' to disable default key mappings:
188 let g:vim_markdown_no_default_key_mappings = 1
190 You can also map them by yourself with '<Plug>' mappings.
192 -------------------------------------------------------------------------------
193 *vim-markdown-enable-toc-window-auto-fit*
194 *g:vim_markdown_toc_autofit*
195 Enable TOC window auto-fit ~
197 Allow for the TOC window to auto-fit when it's possible for it to shrink. It
198 never increases its default size (half screen), it only shrinks.
200 let g:vim_markdown_toc_autofit = 1
202 -------------------------------------------------------------------------------
203 *vim-markdown-text-emphasis-restriction-to-single-lines*
204 *g:vim_markdown_emphasis_multiline*
205 Text emphasis restriction to single-lines ~
207 By default text emphasis works across multiple lines until a closing token is
208 found. However, it's possible to restrict text emphasis to a single line (i.e.,
209 for it to be applied a closing token must be found on the same line). To do so:
211 let g:vim_markdown_emphasis_multiline = 0
213 -------------------------------------------------------------------------------
214 *vim-markdown-syntax-concealing*
215 *g:vim_markdown_conceal*
218 Concealing is set for some syntax.
220 For example, conceal '[link text](link url)' as just 'link text'. Also,
221 '_italic_' and '*italic*' will conceal to just _italic_. Similarly '__bold__',
222 '**bold**', '___italic bold___', and '***italic bold***' will conceal to just
223 **bold**, **bold**, **_italic bold_**, and **_italic bold_** respectively.
225 To enable conceal use Vim's standard conceal configuration.
229 To disable conceal regardless of 'conceallevel' setting, add the following to
232 let g:vim_markdown_conceal = 0
234 To disable math conceal with LaTeX math syntax enabled, add the following to
237 let g:tex_conceal = ""
238 let g:vim_markdown_math = 1
240 -------------------------------------------------------------------------------
241 *vim-markdown-fenced-code-block-languages*
242 *g:vim_markdown_fenced_languages*
243 Fenced code block languages ~
245 You can use filetype name as fenced code block languages for syntax
246 highlighting. If you want to use different name from filetype, you can add it
247 in your '.vimrc' like so:
249 let g:vim_markdown_fenced_languages = ['csharp=cs']
251 This will cause the following to be highlighted using the 'cs' filetype syntax.
257 Default is "['c++=cpp', 'viml=vim', 'bash=sh', 'ini=dosini']".
259 -------------------------------------------------------------------------------
260 *vim-markdown-follow-named-anchors*
261 *g:vim_markdown_follow_anchor*
262 *g:vim_markdown_anchorexpr*
263 Follow named anchors ~
265 This feature allows the 'ge' command to follow named anchors in links of the
266 form 'file#anchor' or just '#anchor', where file may omit the '.md' extension
267 as usual. Two variables control its operation:
269 let g:vim_markdown_follow_anchor = 1
271 This tells vim-markdown whether to attempt to follow a named anchor in a link
272 or not. When it is 1, and only if a link can be split in two parts by the
273 pattern '#', then the first part is interpreted as the file and the second one
274 as the named anchor. This also includes urls of the form '#anchor', for which
275 the first part is considered empty, meaning that the target file is the current
276 one. After the file is opened, the anchor will be searched.
280 let g:vim_markdown_anchorexpr = "'<<'.v:anchor.'>>'"
282 This expression will be evaluated substituting 'v:anchor' with a quoted string
283 that contains the anchor to visit. The result of the evaluation will become the
284 real anchor to search in the target file. This is useful in order to convert
285 anchors of the form, say, 'my-section-title' to searches of the form 'My
286 Section Title' or '<<my-section-title>>'.
290 -------------------------------------------------------------------------------
291 *vim-markdown-syntax-extensions*
294 The following options control which syntax extensions will be turned on. They
297 -------------------------------------------------------------------------------
298 *vim-markdown-latex-math*
299 *g:vim_markdown_math*
302 Used as '$x^2$', '$$x^2$$', escapable as '\$x\$' and '\$\$x\$\$'.
304 let g:vim_markdown_math = 1
306 -------------------------------------------------------------------------------
307 *vim-markdown-yaml-front-matter*
308 *g:vim_markdown_frontmatter*
311 Highlight YAML front matter as used by Jekyll or Hugo [7].
313 let g:vim_markdown_frontmatter = 1
315 -------------------------------------------------------------------------------
316 *vim-markdown-toml-front-matter*
317 *g:vim_markdown_toml_frontmatter*
320 Highlight TOML front matter as used by Hugo [7].
322 TOML syntax highlight requires vim-toml [8].
324 let g:vim_markdown_toml_frontmatter = 1
326 -------------------------------------------------------------------------------
327 *vim-markdown-json-front-matter*
328 *g:vim_markdown_json_frontmatter*
331 Highlight JSON front matter as used by Hugo [7].
333 JSON syntax highlight requires vim-json [9].
335 let g:vim_markdown_json_frontmatter = 1
337 -------------------------------------------------------------------------------
338 *vim-markdown-strikethrough*
339 *g:vim_markdown_strikethrough*
342 Strikethrough uses two tildes. '~~Scratch this.~~'
344 let g:vim_markdown_strikethrough = 1
346 -------------------------------------------------------------------------------
347 *vim-markdown-adjust-new-list-item-indent*
348 *g:vim_markdown_new_list_item_indent*
349 Adjust new list item indent ~
351 You can adjust a new list indent. For example, you insert a single line like
356 Then if you type 'o' to insert new line in vim and type '* item2', the result
362 vim-markdown automatically insert the indent. By default, the number of spaces
363 of indent is 4. If you'd like to change the number as 2, just write:
365 let g:vim_markdown_new_list_item_indent = 2
367 -------------------------------------------------------------------------------
368 *vim-markdown-do-not-require-.md-extensions-for-markdown-links*
369 *g:vim_markdown_no_extensions_in_markdown*
370 Do not require .md extensions for Markdown links ~
372 If you want to have a link like this '[link text](link-url)' and follow it for
373 editing in vim using the 'ge' command, but have it open the file "link-url.md"
374 instead of the file "link-url", then use this option:
376 let g:vim_markdown_no_extensions_in_markdown = 1
378 This is super useful for GitLab and GitHub wiki repositories.
380 Normal behaviour would be that vim-markup required you to do this '[link text
381 ](link-url.md)', but this is not how the Gitlab and GitHub wiki repositories
382 work. So this option adds some consistency between the two.
384 -------------------------------------------------------------------------------
385 *vim-markdown-auto-write-when-following-link*
386 *g:vim_markdown_autowrite*
387 Auto-write when following link ~
389 If you follow a link like this '[link text](link-url)' using the 'ge' shortcut,
390 this option will automatically save any edits you made before moving you:
392 let g:vim_markdown_autowrite = 1
394 -------------------------------------------------------------------------------
395 *vim-markdown-change-default-file-extension*
396 *g:vim_markdown_auto_extension_ext*
397 Change default file extension ~
399 If you would like to use a file extension other than '.md' you may do so using
400 the 'vim_markdown_auto_extension_ext' variable:
402 let g:vim_markdown_auto_extension_ext = 'txt'
404 -------------------------------------------------------------------------------
405 *vim-markdown-do-not-automatically-insert-bulletpoints*
406 *g:vim_markdown_auto_insert_bullets*
407 Do not automatically insert bulletpoints ~
409 Automatically inserting bulletpoints can lead to problems when wrapping text
410 (see issue #232 for details), so it can be disabled:
412 let g:vim_markdown_auto_insert_bullets = 0
414 In that case, you probably also want to set the new list item indent to 0 as
415 well, or you will have to remove an indent each time you add a new list item:
417 let g:vim_markdown_new_list_item_indent = 0
419 -------------------------------------------------------------------------------
420 *vim-markdown-change-how-to-open-new-files*
421 *g:vim_markdown_edit_url_in*
422 Change how to open new files ~
424 By default when following a link the target file will be opened in your current
425 buffer. This behavior can change if you prefer using splits or tabs by using
426 the 'vim_markdown_edit_url_in' variable. Possible values are 'tab', 'vsplit',
427 'hsplit', 'current' opening in a new tab, vertical split, horizontal split, and
428 current buffer respectively. Defaults to current buffer if not set:
430 let g:vim_markdown_edit_url_in = 'tab'
432 ===============================================================================
433 *vim-markdown-mappings*
436 The following work on normal and visual modes:
439 - 'gx': open the link under the cursor in the same browser as the standard
440 'gx' command. '<Plug>Markdown_OpenUrlUnderCursor'
442 The standard 'gx' is extended by allowing you to put your cursor anywhere
445 For example, all the following cursor positions will work:
447 [Example](http://example.com)
455 Known limitation: does not work for links that span multiple lines.
458 - 'ge': open the link under the cursor in Vim for editing. Useful for
459 relative markdown links. '<Plug>Markdown_EditUrlUnderCursor'
461 The rules for the cursor position are the same as the 'gx' command.
464 - ']]': go to next header. '<Plug>Markdown_MoveToNextHeader'
467 - '[[': go to previous header. Contrast with ']c'.
468 '<Plug>Markdown_MoveToPreviousHeader'
471 - '][': go to next sibling header if any.
472 '<Plug>Markdown_MoveToNextSiblingHeader'
475 - '[]': go to previous sibling header if any.
476 '<Plug>Markdown_MoveToPreviousSiblingHeader'
479 - ']c': go to Current header. '<Plug>Markdown_MoveToCurHeader'
482 - ']u': go to parent header (Up). '<Plug>Markdown_MoveToParentHeader'
484 This plugin follows the recommended Vim plugin mapping interface, so to change
485 the map ']u' to 'asdf', add to your '.vimrc':
487 map asdf <Plug>Markdown_MoveToParentHeader
489 To disable a map use:
491 map <Plug> <Plug>Markdown_MoveToParentHeader
493 ===============================================================================
494 *vim-markdown-commands*
497 The following requires ':filetype plugin on'.
502 Decrease level of all headers in buffer: 'h2' to 'h1', 'h3' to 'h2', etc.
504 If range is given, only operate in the range.
506 If an 'h1' would be decreased, abort.
508 For simplicity of implementation, Setex headers are converted to Atx.
511 - ':HeaderIncrease': Analogous to ':HeaderDecrease', but increase levels
517 Convert all Setex style headers in buffer to Atx.
519 If a range is given, e.g. hit ':' from visual mode, only operate on the
523 - ':TableFormat': Format the table under the cursor like this [10].
525 Requires Tabular [11].
527 The input table _must_ already have a separator line as the second line of
528 the table. That line only needs to contain the correct pipes '|', nothing
532 - ':Toc': create a quickfix vertical window navigable table of contents with
535 Hit '<Enter>' on a line to jump to the corresponding line of the markdown
539 - ':Toch': Same as ':Toc' but in an horizontal window.
542 - ':Toct': Same as ':Toc' but in a new tab.
545 - ':Tocv': Same as ':Toc' for symmetry with ':Toch' and ':Tocv'.
547 ===============================================================================
548 *vim-markdown-credits*
551 The main contributors of vim-markdown are:
553 - **Ben Williams** (A.K.A. **plasticboy**). The original developer of vim-
554 markdown. Homepage [12].
556 If you feel that your name should be on this list, please make a pull request
557 listing your contributions.
559 ===============================================================================
560 *vim-markdown-license*
563 The MIT License (MIT)
565 Copyright (c) 2012 Benjamin D. Williams
567 Permission is hereby granted, free of charge, to any person obtaining a copy of
568 this software and associated documentation files (the "Software"), to deal in
569 the Software without restriction, including without limitation the rights to
570 use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
571 of the Software, and to permit persons to whom the Software is furnished to do
572 so, subject to the following conditions:
574 The above copyright notice and this permission notice shall be included in all
575 copies or substantial portions of the Software.
577 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
578 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
579 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
580 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
581 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
582 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
585 ===============================================================================
586 *vim-markdown-references*
589 [1] http://daringfireball.net/projects/markdown/
590 [2] https://github.com/gmarik/vundle
591 [3] https://github.com/tpope/vim-pathogen
592 [4] http://packages.qa.debian.org/v/vim-addon-manager.html
593 [5] https://github.com/plasticboy/vim-markdown/archive/master.tar.gz
594 [6] https://github.com/klen/python-mode
595 [7] https://gohugo.io/content/front-matter/
596 [8] https://github.com/cespare/vim-toml
597 [9] https://github.com/elzr/vim-json
598 [10] http://www.cirosantilli.com/markdown-style-guide/#tables
599 [11] https://github.com/godlygeek/tabular
600 [12] http://plasticboy.com/