X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/5da9db319c1c4382c8f9f55b3bf12917f001fbd7..eb89af96d9ae2f0c45cf252563a6046cdb77a7ad:/ftplugin/mkd.vim diff --git a/ftplugin/mkd.vim b/ftplugin/mkd.vim index 42dca90..63d7914 100644 --- a/ftplugin/mkd.vim +++ b/ftplugin/mkd.vim @@ -318,8 +318,7 @@ function! s:Markdown_Toc(...) else lopen endif - set modifiable - %s/\v^([^|]*\|){2,2} #//e + setlocal modifiable for i in range(1, line('$')) " this is the location-list data for the current item let d = getloclist(0)[i-1] @@ -339,8 +338,8 @@ function! s:Markdown_Toc(...) endif call setline(i, repeat(' ', l:level). d.text) endfor - set nomodified - set nomodifiable + setlocal nomodified + setlocal nomodifiable normal! gg endfunction