From ba1fa3ceb9d4a93ac3009b9d1d8d0fae28fdb3ea Mon Sep 17 00:00:00 2001 From: Hiroshi Shirosaki Date: Wed, 13 Jan 2016 19:05:40 +0900 Subject: [PATCH] Fix vim code style in README.md --- README.md | 10 +++++----- doc/vim-markdown.txt | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d2ed419..e9fac38 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ tar --strip=1 -zxf vim-markdown-master.tar.gz Add the following line to your `.vimrc` to disable the folding configuration: ```vim -let g:vim_markdown_folding_disabled=1 +let g:vim_markdown_folding_disabled = 1 ``` This option only controls Vim Markdown specific folding configuration. @@ -76,7 +76,7 @@ To fold in a style like [python-mode](https://github.com/klen/python-mode), add the following to your `.vimrc`: ```vim -let g:vim_markdown_folding_style_pythonic=1 +let g:vim_markdown_folding_style_pythonic = 1 ``` ### Disable Default Key Mappings @@ -84,7 +84,7 @@ let g:vim_markdown_folding_style_pythonic=1 Add the following line to your `.vimrc` to disable default key mappings: ```vim -let g:vim_markdown_no_default_key_mappings=1 +let g:vim_markdown_no_default_key_mappings = 1 ``` You can also map them by yourself with `` mappings. @@ -98,7 +98,7 @@ The following options control which syntax extensions will be turned on. They ar Used as `$x^2$`, `$$x^2$$`, escapable as `\$x\$` and `\$\$x\$\$`. ```vim -let g:vim_markdown_math=1 +let g:vim_markdown_math = 1 ``` #### YAML frontmatter @@ -106,7 +106,7 @@ let g:vim_markdown_math=1 Highlight YAML frontmatter as used by Jekyll: ```vim -let g:vim_markdown_frontmatter=1 +let g:vim_markdown_frontmatter = 1 ``` ## Mappings diff --git a/doc/vim-markdown.txt b/doc/vim-markdown.txt index f88ae25..6e65ff4 100644 --- a/doc/vim-markdown.txt +++ b/doc/vim-markdown.txt @@ -68,7 +68,7 @@ Disable Folding ~ Add the following line to your '.vimrc' to disable the folding configuration: > - let g:vim_markdown_folding_disabled=1 + let g:vim_markdown_folding_disabled = 1 < This option only controls Vim Markdown specific folding configuration. @@ -82,7 +82,7 @@ Change fold style ~ To fold in a style like python-mode [6], add the following to your '.vimrc': > - let g:vim_markdown_folding_style_pythonic=1 + let g:vim_markdown_folding_style_pythonic = 1 < ------------------------------------------------------------------------------- *vim-markdown-disable-default-key-mappings* @@ -90,7 +90,7 @@ Disable Default Key Mappings ~ Add the following line to your '.vimrc' to disable default key mappings: > - let g:vim_markdown_no_default_key_mappings=1 + let g:vim_markdown_no_default_key_mappings = 1 < You can also map them by yourself with '' mappings. @@ -107,7 +107,7 @@ LaTeX math ~ Used as '$x^2$', '$$x^2$$', escapable as '\$x\$' and '\$\$x\$\$'. > - let g:vim_markdown_math=1 + let g:vim_markdown_math = 1 < ------------------------------------------------------------------------------- *vim-markdown-yaml-frontmatter* @@ -115,7 +115,7 @@ YAML frontmatter ~ Highlight YAML frontmatter as used by Jekyll: > - let g:vim_markdown_frontmatter=1 + let g:vim_markdown_frontmatter = 1 < =============================================================================== *vim-markdown-mappings* -- 2.39.2