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. Options |vim-markdown-options|
9 1. Disable Folding |vim-markdown-disable-folding|
10 2. Change fold style |vim-markdown-change-fold-style|
11 3. Set header folding level |vim-markdown-set-header-folding-level|
12 4. Disable Default Key Mappings |vim-markdown-disable-default-key-mappings|
13 5. Enable TOC window auto-fit |vim-markdown-enable-toc-window-auto-fit|
14 6. Text emphasis restriction to single-lines
15 |vim-markdown-text-emphasis-restriction-to-single-lines|
16 7. Syntax Concealing |vim-markdown-syntax-concealing|
17 8. Fenced code block languages |vim-markdown-fenced-code-block-languages|
18 9. Syntax extensions |vim-markdown-syntax-extensions|
19 1. LaTeX math |vim-markdown-latex-math|
20 2. YAML Front Matter |vim-markdown-yaml-front-matter|
21 3. TOML Front Matter |vim-markdown-toml-front-matter|
22 4. JSON Front Matter |vim-markdown-json-front-matter|
23 10. Adjust new list item indent |vim-markdown-adjust-new-list-item-indent|
24 11. Do not require .md extensions for Markdown links
25 |vim-markdown-do-not-require-.md-extensions-for-markdown-links|
26 12. Auto-write when following link
27 |vim-markdown-auto-write-when-following-link|
28 4. Mappings |vim-markdown-mappings|
29 5. Commands |vim-markdown-commands|
30 6. Credits |vim-markdown-credits|
31 7. License |vim-markdown-license|
32 8. References |vim-markdown-references|
34 ===============================================================================
35 *vim-markdown-introduction*
38 Syntax highlighting, matching rules and mappings for the original Markdown [1]
41 ===============================================================================
42 *vim-markdown-installation*
45 If you use Vundle [2], add the following line to your '~/.vimrc':
47 Plugin 'godlygeek/tabular'
48 Plugin 'plasticboy/vim-markdown'
50 The 'tabular' plugin must come _before_ 'vim-markdown'.
57 If you use Pathogen [3], do this:
60 git clone https://github.com/plasticboy/vim-markdown.git
62 To install without Pathogen using the Debian vim-addon-manager [4], do this:
64 git clone https://github.com/plasticboy/vim-markdown.git
67 vim-addon-manager install markdown
69 If you are not using any package manager, download the tarball [5] and do this:
72 tar --strip=1 -zxf vim-markdown-master.tar.gz
74 ===============================================================================
75 *vim-markdown-options*
78 -------------------------------------------------------------------------------
79 *vim-markdown-disable-folding*
82 Add the following line to your '.vimrc' to disable the folding configuration:
84 let g:vim_markdown_folding_disabled = 1
86 This option only controls Vim Markdown specific folding configuration.
88 To enable/disable folding use Vim's standard folding configuration.
92 -------------------------------------------------------------------------------
93 *vim-markdown-change-fold-style*
96 To fold in a style like python-mode [6], add the following to your '.vimrc':
98 let g:vim_markdown_folding_style_pythonic = 1
100 Level 1 heading which is served as a document title is not folded.
101 'g:vim_markdown_folding_level' setting is not active with this fold style.
103 To prevent foldtext from being set add the following to your '.vimrc':
105 let g:vim_markdown_override_foldtext = 0
107 -------------------------------------------------------------------------------
108 *vim-markdown-set-header-folding-level*
109 Set header folding level ~
111 Folding level is a number between 1 and 6. By default, if not specified, it is
114 let g:vim_markdown_folding_level = 6
116 Tip: it can be changed on the fly with:
118 :let g:vim_markdown_folding_level = 1
121 -------------------------------------------------------------------------------
122 *vim-markdown-disable-default-key-mappings*
123 Disable Default Key Mappings ~
125 Add the following line to your '.vimrc' to disable default key mappings:
127 let g:vim_markdown_no_default_key_mappings = 1
129 You can also map them by yourself with '<Plug>' mappings.
131 -------------------------------------------------------------------------------
132 *vim-markdown-enable-toc-window-auto-fit*
133 Enable TOC window auto-fit ~
135 Allow for the TOC window to auto-fit when it's possible for it to shrink. It
136 never increases its default size (half screen), it only shrinks.
138 let g:vim_markdown_toc_autofit = 1
140 -------------------------------------------------------------------------------
141 *vim-markdown-text-emphasis-restriction-to-single-lines*
142 Text emphasis restriction to single-lines ~
144 By default text emphasis works across multiple lines until a closing token is
145 found. However, it's possible to restrict text emphasis to a single line (ie,
146 for it to be applied a closing token must be found on the same line). To do so:
148 let g:vim_markdown_emphasis_multiline = 0
150 -------------------------------------------------------------------------------
151 *vim-markdown-syntax-concealing*
154 Concealing is set for some syntax.
156 For example, conceal '[link text](link url)' as just 'link text'. Also,
157 '_italic_' and '*italic*' will conceal to just _italic_. Similarly '__bold__',
158 '**bold**', '___italic bold___', and '***italic bold***' will conceal to just
159 **bold**, **bold**, **_italic bold_**, and **_italic bold_** respectively.
161 To enable conceal use Vim's standard conceal configuration.
165 To disable conceal regardless of 'conceallevel' setting, add the following to
168 let g:vim_markdown_conceal = 0
170 -------------------------------------------------------------------------------
171 *vim-markdown-fenced-code-block-languages*
172 Fenced code block languages ~
174 You can use filetype name as fenced code block languages for syntax
175 highlighting. If you want to use different name from filetype, you can add it
176 in your '.vimrc' like so:
178 let g:vim_markdown_fenced_languages = ['csharp=cs']
180 This will cause the following to be highlighted using the 'cs' filetype syntax.
186 Default is "['c++=cpp', 'viml=vim', 'bash=sh', 'ini=dosini']".
188 -------------------------------------------------------------------------------
189 *vim-markdown-syntax-extensions*
192 The following options control which syntax extensions will be turned on. They
195 -------------------------------------------------------------------------------
196 *vim-markdown-latex-math*
199 Used as '$x^2$', '$$x^2$$', escapable as '\$x\$' and '\$\$x\$\$'.
201 let g:vim_markdown_math = 1
203 -------------------------------------------------------------------------------
204 *vim-markdown-yaml-front-matter*
207 Highlight YAML front matter as used by Jekyll or Hugo [7].
209 let g:vim_markdown_frontmatter = 1
211 -------------------------------------------------------------------------------
212 *vim-markdown-toml-front-matter*
215 Highlight TOML front matter as used by Hugo [7].
217 TOML syntax highlight requires vim-toml [8].
219 let g:vim_markdown_toml_frontmatter = 1
221 -------------------------------------------------------------------------------
222 *vim-markdown-json-front-matter*
225 Highlight JSON front matter as used by Hugo [7].
227 JSON syntax highlight requires vim-json [9].
229 let g:vim_markdown_json_frontmatter = 1
231 -------------------------------------------------------------------------------
232 *vim-markdown-adjust-new-list-item-indent*
233 Adjust new list item indent ~
235 You can adjust a new list indent. For example, you insert a single line like
240 Then if you type 'o' to insert new line in vim and type '* item2', the result
246 vim-markdown automatically insert the indent. By default, the number of spaces
247 of indent is 4. If you'd like to change the number as 2, just write:
249 let g:vim_markdown_new_list_item_indent = 2
251 -------------------------------------------------------------------------------
252 *vim-markdown-do-not-require-.md-extensions-for-markdown-links*
253 Do not require .md extensions for Markdown links ~
255 If you want to have a link like this '[link text](link-url)' and follow it for
256 editing in vim using the 'ge' command, but have it open the file "link-url.md"
257 instead of the file "link-url", then use this option:
259 let g:vim_markdown_no_extensions_in_markdown = 1
261 This is super useful for GitLab and GitHub wiki repositories.
263 Normal behaviour would be that vim-markup required you to do this '[link text
264 ](link-url.md)', but this is not how the Gitlab and GitHub wiki repositories
265 work. So this option adds some consistency between the two.
267 -------------------------------------------------------------------------------
268 *vim-markdown-auto-write-when-following-link*
269 Auto-write when following link ~
271 If you follow a link like this '[link text](link-url)' using the 'ge' shortcut,
272 this option will automatically save any edits you made before moving you:
274 let g:vim_markdown_autowrite = 1
276 ===============================================================================
277 *vim-markdown-mappings*
280 The following work on normal and visual modes:
283 - 'gx': open the link under the cursor in the same browser as the standard
284 'gx' command. '<Plug>Markdown_OpenUrlUnderCursor'
286 The standard 'gx' is extended by allowing you to put your cursor anywhere
289 For example, all the following cursor positions will work:
291 [Example](http://example.com)
299 Known limitation: does not work for links that span multiple lines.
302 - 'ge': open the link under the cursor in Vim for editing. Useful for
303 relative markdown links. '<Plug>Markdown_EditUrlUnderCursor'
305 The rules for the cursor position are the same as the 'gx' command.
308 - ']]': go to next header. '<Plug>Markdown_MoveToNextHeader'
311 - '[[': go to previous header. Contrast with ']c'.
312 '<Plug>Markdown_MoveToPreviousHeader'
315 - '][': go to next sibling header if any.
316 '<Plug>Markdown_MoveToNextSiblingHeader'
319 - '[]': go to previous sibling header if any.
320 '<Plug>Markdown_MoveToPreviousSiblingHeader'
323 - ']c': go to Current header. '<Plug>Markdown_MoveToCurHeader'
326 - ']u': go to parent header (Up). '<Plug>Markdown_MoveToParentHeader'
328 This plugin follows the recommended Vim plugin mapping interface, so to change
329 the map ']u' to 'asdf', add to your '.vimrc':
331 map asdf <Plug>Markdown_MoveToParentHeader
333 To disable a map use:
335 map <Plug> <Plug>Markdown_MoveToParentHeader
337 ===============================================================================
338 *vim-markdown-commands*
341 The following requires ':filetype plugin on'.
346 Decrease level of all headers in buffer: 'h2' to 'h1', 'h3' to 'h2', etc.
348 If range is given, only operate in the range.
350 If an 'h1' would be decreased, abort.
352 For simplicity of implementation, Setex headers are converted to Atx.
355 - ':HeaderIncrease': Analogous to ':HeaderDecrease', but increase levels
361 Convert all Setex style headers in buffer to Atx.
363 If a range is given, e.g. hit ':' from visual mode, only operate on the
367 - ':TableFormat': Format the table under the cursor like this [10].
369 Requires Tabular [11].
371 The input table _must_ already have a separator line as the second line of
372 the table. That line only needs to contain the correct pipes '|', nothing
376 - ':Toc': create a quickfix vertical window navigable table of contents with
379 Hit '<Enter>' on a line to jump to the corresponding line of the markdown
383 - ':Toch': Same as ':Toc' but in an horizontal window.
386 - ':Toct': Same as ':Toc' but in a new tab.
389 - ':Tocv': Same as ':Toc' for symmetry with ':Toch' and ':Tocv'.
391 ===============================================================================
392 *vim-markdown-credits*
395 The main contributors of vim-markdown are:
397 - **Ben Williams** (A.K.A. **plasticboy**). The original developer of vim-
398 markdown. Homepage [12].
400 If you feel that your name should be on this list, please make a pull request
401 listing your contributions.
403 ===============================================================================
404 *vim-markdown-license*
407 The MIT License (MIT)
409 Copyright (c) 2012 Benjamin D. Williams
411 Permission is hereby granted, free of charge, to any person obtaining a copy of
412 this software and associated documentation files (the "Software"), to deal in
413 the Software without restriction, including without limitation the rights to
414 use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
415 of the Software, and to permit persons to whom the Software is furnished to do
416 so, subject to the following conditions:
418 The above copyright notice and this permission notice shall be included in all
419 copies or substantial portions of the Software.
421 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
422 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
423 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
424 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
425 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
426 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
429 ===============================================================================
430 *vim-markdown-references*
433 [1] http://daringfireball.net/projects/markdown/
434 [2] https://github.com/gmarik/vundle
435 [3] https://github.com/tpope/vim-pathogen
436 [4] http://packages.qa.debian.org/v/vim-addon-manager.html
437 [5] https://github.com/plasticboy/vim-markdown/archive/master.tar.gz
438 [6] https://github.com/klen/python-mode
439 [7] https://gohugo.io/content/front-matter/
440 [8] https://github.com/cespare/vim-toml
441 [9] https://github.com/elzr/vim-json
442 [10] http://www.cirosantilli.com/markdown-style-guide/#tables
443 [11] https://github.com/godlygeek/tabular
444 [12] http://plasticboy.com/