]>
git.madduck.net Git - etc/vim.git/commitdiff
madduck's git repository
Every one of the projects in this repository is available at the canonical
URL git://git.madduck.net/madduck/pub/<projectpath> — see
each project's metadata for the exact URL.
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.
SSH access, as well as push access can be individually
arranged .
If you use my repositories frequently, consider adding the following
snippet to ~/.gitconfig and using the third clone URL listed for each
project:
[url "git://git.madduck.net/madduck/"]
insteadOf = madduck:
summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (parent:
c4773a9 )
let g:vim_markdown_folding_style_pythonic=1
```
let g:vim_markdown_folding_style_pythonic=1
```
+### Set header folding level
+
+Folding level is a number between 1 and 6. By default, if not specified, it is set to 1.
+
+```vim
+let g:vim_markdown_folding_level = 6
+```
+
+Tip: it can be changed on the fly with:
+
+```vim
+:let g:vim_markdown_folding_level = 1
+:edit
+```
+
### Disable Default Key Mappings
Add the following line to your `.vimrc` to disable default key mappings:
### Disable Default Key Mappings
Add the following line to your `.vimrc` to disable default key mappings:
let g:vim_markdown_frontmatter=1
```
let g:vim_markdown_frontmatter=1
```
-#### Folding level
-
-Folding level is a number between 1 and 6. By default, if not specified, it is set to 1.
-
-```vim
-let g:vim_markdown_folding_level = 6
-```
-
-Tip: it can be changed on the fly with:
-
-```vim
-:let g:vim_markdown_folding_level = 1
-:edit
-```
-
let l2 = getline(a:lnum+1)
if l2 =~ '^==\+\s*' && !s:is_mkdCode(a:lnum+1)
" next line is underlined (level 1)
let l2 = getline(a:lnum+1)
if l2 =~ '^==\+\s*' && !s:is_mkdCode(a:lnum+1)
" next line is underlined (level 1)
elseif l2 =~ '^--\+\s*' && !s:is_mkdCode(a:lnum+1)
" next line is underlined (level 2)
elseif l2 =~ '^--\+\s*' && !s:is_mkdCode(a:lnum+1)
" next line is underlined (level 2)
+ if g:vim_markdown_folding_level == 2
+ return 0
+ else
+ return 1
+ endif
endif
let l1 = getline(a:lnum)
if l1 =~ '^#' && !s:is_mkdCode(a:lnum)
" fold level according to option
endif
let l1 = getline(a:lnum)
if l1 =~ '^#' && !s:is_mkdCode(a:lnum)
" fold level according to option
- " (in vim -1 is visible, >= 0 is folded)
let l:level = matchend(l1, '^#\+')
if g:vim_markdown_folding_level == 1 || l:level > g:vim_markdown_folding_level
return -1
let l:level = matchend(l1, '^#\+')
if g:vim_markdown_folding_level == 1 || l:level > g:vim_markdown_folding_level
return -1
" current line starts with hashes
return '>'.matchend(l0, '^#\+')
else
" current line starts with hashes
return '>'.matchend(l0, '^#\+')
else
- " keep previous foldlevel
- return '='
+ " fold here because of setext headers
+ return 1
let l:header_max_len = 0
for i in range(1, line('$'))
let l:lineraw = getline(i)
let l:header_max_len = 0
for i in range(1, line('$'))
let l:lineraw = getline(i)
+ let l:l1 = getline(i+1)
let l:line = substitute(l:lineraw, "#", "\\\#", "g")
if l:line =~ '````*' || l:line =~ '\~\~\~\~*'
if b:fenced_block == 0
let l:line = substitute(l:lineraw, "#", "\\\#", "g")
if l:line =~ '````*' || l:line =~ '\~\~\~\~*'
if b:fenced_block == 0
let b:fenced_block = 0
endif
endif
let b:fenced_block = 0
endif
endif
- if l:line =~ '^#\+' && b:fenced_block == 0
+ if l:line =~ '^#\+' || l:l1 =~ '^==\+\s*' || l:l1 =~ '^--\+\s*'
+ let b:is_header = 1
+ else
+ let b:is_header = 0
+ endif
+ if b:is_header == 1 && b:fenced_block == 0
" append line to location list
let b:item = {'lnum': i, 'text': l:line, 'valid': 1, 'bufnr': b:bufnr, 'col': 1}
let b:header_list = b:header_list + [b:item]
" append line to location list
let b:item = {'lnum': i, 'text': l:line, 'valid': 1, 'bufnr': b:bufnr, 'col': 1}
let b:header_list = b:header_list + [b:item]