Fix fold inside code fences

This commit is contained in:
flyxyz123
2023-04-02 10:30:41 -07:00
committed by GitHub
parent feadbc81e2
commit f2b82b7884

View File

@@ -35,7 +35,7 @@ if !exists("g:no_plugin_maps") && !exists("g:no_markdown_maps")
endif
function! s:NotCodeBlock(lnum) abort
return synIDattr(synID(a:lnum, 1, 1), 'name') !=# 'markdownCode'
return synIDattr(synID(a:lnum, 1, 1), 'name') !=# 'markdownCodeBlock'
endfunction
function! MarkdownFold() abort