diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-07-28 21:57:33 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-07-28 21:57:33 -0300 |
commit | 1762eb9514a0817c1a72322785801312655ae3da (patch) | |
tree | 14afe9467cd06a1b0c60c903ca817104957d2f50 /vim.dot.link | |
parent | a3653e9be15357f2813543c5ff320327b6f04531 (diff) | |
download | vim-1762eb9514a0817c1a72322785801312655ae3da.tar.gz vim-1762eb9514a0817c1a72322785801312655ae3da.tar.bz2 |
Fix: workarounds for markdown filetype handling (2)
Diffstat (limited to 'vim.dot.link')
-rw-r--r-- | vim.dot.link/filetype.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/vim.dot.link/filetype.vim b/vim.dot.link/filetype.vim index f90f920..d11c87b 100644 --- a/vim.dot.link/filetype.vim +++ b/vim.dot.link/filetype.vim @@ -37,6 +37,9 @@ augroup filetypedetect " Markdown folding through NestedMarkdownFolds() are not correctly working " with this configuration. " + " Maybe what's happenning is that setting the "markdown" filetype + " trigger behaviors that conflicts with our custom configuration. + " "autocmd BufRead,BufNewFile,BufEnter *.mdwn setfiletype markdown "autocmd BufRead,BufNewFile,BufEnter *.md setfiletype markdown augroup END |