X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/9a3b3126eeb98a1bf5a327912b2ff0bf591ccec2..4b8f631148d5ed7830cc34a7aa91ef71ea253f84:/ftplugin/mkd.vim diff --git a/ftplugin/mkd.vim b/ftplugin/mkd.vim index 057947b..d4113ad 100644 --- a/ftplugin/mkd.vim +++ b/ftplugin/mkd.vim @@ -321,8 +321,8 @@ function! s:Markdown_Toc(...) set modifiable %s/\v^([^|]*\|){2,2} #// 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