Somebody mentioned the `!` command, but the help topic cannot be found with
:h !
Instead it shows the help for `:!' (gVim 7.3.420).
gVim 7.3 and earlier works ok.
Attached patch (ff=dos) attempts to fix the problem.
--
Andy
--
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 49bd3bd33215 src/tag.c
--- a/src/tag.c Mon Jan 30 02:31:25 2012 +0100
+++ b/src/tag.c Mon Sep 10 12:42:38 2012 +0200
@@ -1795,7 +1795,7 @@
*/
if (state == TS_START)
{
- if (STRNCMP(lbuf, "!_TAG_", 6) <= 0)
+ if (STRNCMP(lbuf, "!_TAG_", 6) <= 0 && !curbuf->b_help)
{
/*
* Read header line.