]> 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:

Use winwidth(0) instead of &winwidth
authorHiroshi Shirosaki <h.shirosaki@gmail.com>
Fri, 15 Jan 2016 08:59:00 +0000 (17:59 +0900)
committerHiroshi Shirosaki <h.shirosaki@gmail.com>
Fri, 15 Jan 2016 08:59:00 +0000 (17:59 +0900)
&winwidth is not real width but option value.

test/toc-autofit.vader

index 166cc81618c0435bd849455a58bebddbae63517c..d35f50aa2bcb8d2f8113c282978be8770d9c1bbb 100644 (file)
@@ -43,7 +43,7 @@ Execute (toc window autofit width):
   let line = '###### chap 12.1.1.1.1.1'
   AssertEqual getline('33'), line
   :Toc
-  let real_width = &winwidth
+  let real_width = winwidth(0)
   :lclose
   let expected_width = len(line) + 2*5 + 1 + 3 - 7
   AssertEqual real_width, expected_width