X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/9a3b3126eeb98a1bf5a327912b2ff0bf591ccec2..1462465bc2830e20f4644870a99fc626719bfcdb:/ftplugin/mkd.vim diff --git a/ftplugin/mkd.vim b/ftplugin/mkd.vim index 057947b..63d7914 100644 --- a/ftplugin/mkd.vim +++ b/ftplugin/mkd.vim @@ -318,11 +318,10 @@ function! s:Markdown_Toc(...) else lopen endif - set modifiable - %s/\v^([^|]*\|){2,2} #// + setlocal modifiable for i in range(1, line('$')) - " this is the quickfix data for the current item - let d = getqflist()[i-1] + " this is the location-list data for the current item + let d = getloclist(0)[i-1] " atx headers if match(d.text, "^#") > -1 let l:level = len(matchstr(d.text, '#*', 'g'))-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