]> git.madduck.net Git - etc/vim.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

fixed the autofit bug
authorluzhlon <luzhlon@outlook.com>
Sun, 11 Dec 2016 01:26:15 +0000 (09:26 +0800)
committerluzhlon <luzhlon@outlook.com>
Sun, 11 Dec 2016 01:26:15 +0000 (09:26 +0800)
ftplugin/markdown.vim

index daaa2afc0cc354b5e84f3e2ad0c7f2f7a131bd4a..bf28d5e9a343b10b1a3353853f8e33f5fdd22dbe 100644 (file)
@@ -351,7 +351,7 @@ function! s:Toc(...)
                 endif
             endif
             " keep track of the longest header size (heading level + title)
-            let l:total_len = stridx(l:line, ' ') + len(l:line)
+            let l:total_len = stridx(l:line, ' ') + strdisplaywidth(l:line)
             if l:total_len > l:header_max_len
                 let l:header_max_len = l:total_len
             endif