From: Ciro Santilli Date: Mon, 16 Jun 2014 08:40:07 +0000 (+0200) Subject: Merge pull request #83 from cirosantilli/no-space-before-header X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/07237228f6dd9ac70012cbdfc7a4126cb6984946?hp=106db7654586a25fc61cb06b50a4e6d2b08a32a7 Merge pull request #83 from cirosantilli/no-space-before-header Don't allow spaces before headers in nav mappings. Breaks too often when you have code blocks with comments that start with #. --- diff --git a/README.md b/README.md index 24c5c6c..1c5b246 100644 --- a/README.md +++ b/README.md @@ -69,8 +69,6 @@ The following work on normal and visual modes: ## Commands -The following commands currently only work for atx style headers (`#`). Pull request are welcome to extend them to Setext style headers (`===`). - - `:Toc`: create a quickfix vertical window navigable table of contents with the headers. Hit `` on a line to jump to the corresponding line of the markdown file. diff --git a/ftplugin/mkd.vim b/ftplugin/mkd.vim index 33eac2c..21043a6 100644 --- a/ftplugin/mkd.vim +++ b/ftplugin/mkd.vim @@ -300,7 +300,14 @@ function! s:Markdown_Toc(...) else let l:window_type = 'vertical' endif - silent vimgrep '^#' % + + try + silent vimgrep /\(^\S.*\(\n[=-]\+\)\@=\|^#\+\)/ % + catch /E480/ + echom "Toc: No headers." + return + endtry + if l:window_type ==# 'horizontal' copen elseif l:window_type ==# 'vertical' @@ -314,13 +321,23 @@ function! s:Markdown_Toc(...) set modifiable %s/\v^([^|]*\|){2,2} #// for i in range(1, line('$')) - let l:line = getline(i) - let l:header = matchstr(l:line, '^#*') - let l:length = len(l:header) - let l:line = substitute(l:line, '\v^#*[ ]*', '', '') - let l:line = substitute(l:line, '\v[ ]*#*$', '', '') - let l:line = repeat(' ', (2 * l:length)) . l:line - call setline(i, l:line) + " this is the quickfix data for the current item + let d = getqflist()[i-1] + " atx headers + if match(d.text, "^#") > -1 + let l:level = len(matchstr(d.text, '#*', 'g'))-1 + let d.text = substitute(d.text, '\v^#*[ ]*', '', '') + let d.text = substitute(d.text, '\v[ ]*#*$', '', '') + " setex headers + else + let l:next_line = getbufline(bufname(d.bufnr), d.lnum+1) + if match(l:next_line, "=") > -1 + let l:level = 0 + elseif match(l:next_line, "-") > -1 + let l:level = 1 + endif + endif + call setline(i, repeat(' ', l:level). d.text) endfor set nomodified set nomodifiable