Hi there
I found a missing ' for an option in insert.txt. See attached patch.
Greetings
Elias
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
diff -r dbb084863466 runtime/doc/insert.txt
--- a/runtime/doc/insert.txt Wed Jun 20 22:56:02 2012 +0200
+++ b/runtime/doc/insert.txt Mon Jun 25 17:23:32 2012 +0200
@@ -491,7 +491,7 @@
*ins-smarttab*
When the 'smarttab' option is on, a <Tab> inserts 'shiftwidth' positions at
the beginning of a line and 'tabstop' positions in other places. This means
-that often spaces instead of a <Tab> character are inserted. When 'smarttab
+that often spaces instead of a <Tab> character are inserted. When 'smarttab'
is off, a <Tab> always inserts 'tabstop' positions, and 'shiftwidth' is only
used for ">>" and the like. {not in Vi}